最近一个项目中,合作方要求去除html中的空格,不想改代码,所以百度了一下通过apache,和nginx模块去除html中的空格和tab的方案,下面记录下来: 一.nginx nginx可以通过mod_strip模块来实现该功能 1. mod_strip安装: # cd /usr/local/src/# wget http://wiki.nginx.org/images/6/63/Mod_strip-0.1.tar.gz# tar -xzvf Mod_strip-0.1.tar.gz# cd n
def stripFile(oldFile, newFile): '''remove the space or Tab or enter in a file, and output a new file in the same folder''' f = open(oldFile, 'r+', encoding='utf8') newf = open(newFile, 'w',encoding='utf8') for eachline in f.readlines(): newStr = eac
Blog:博客园 个人 翻译自Looping Through a File that Contains Spaces – Bash for Loop 处理包含空格或特殊字符的文件是每个使用Linux的人都应必须掌握的.本文我们将讨论如何在带有空格的文件上使用for循环. 测试文本如下: This line has spaces these do not 现在,我们使用for循环来迭代这个文本.当我们执行for循环时,shell会看到第一行的空格,并假设每一行都是不同的迭代. [root@test
转自:http://www.crifan.com/python_syntax_error_indentationerror/comment-page-1/ [已解决]Python脚本运行出现语法错误:IndentationError: unindent does not match any outer indentation level 2012 年 3 月 8 日 下午 9:52crifan已有107701人围观9个评论 [问题] 一个python脚本,本来都运行好好的,然后写了几行代码,而且