在网站上复制一些文件,会带有行号,如果一个一个删除,很麻烦,下面用一条命令删除所有的行号以及空格
原文件:
164. server165. {
166. listen 80;
167. server_name www.very365.com mm.very365.com very365.com;
168. index index.html index.htm index.php;
169. root /data/htdocs/www/very365;
170. location /
171. {
172. rewrite ^/(.*)/product/([0-9]+)/$ /seoproduct\.php\?spell=$1&productid=$2;
173. rewrite ^/brand/(.*)/page/([0-9]+)/$ /seobrand\.php\?spell=$1&page=$2;
174. rewrite ^/brand/(.*)/$ /seobrand\.php\?spell=$1;
175.
176. }
177. location ~ .*\.(php|php5)?$
178. {
将这个源文件复制到VIM编辑器中,在命令模式运行以下命令,删除行号以及空格:
:1,$s/^[0-9]*\.[[:space:]]//g