sed删除注释行和空行】的更多相关文章

典型需求: 删除nginx.conf文件中注释行和空行 sed -i '/^#/d;/^$/d' nginx.conf 删除一个或多个空格加 # 号的行 sed -i '/[:blank:]*#/d' nginx.conf 在配置文件中所有不以#开头的行前面添加*符号,注意:以#开头的行不添加 ^[^#] 对以#号开头的行取反就是非#开头的行,& 是反向引用代表前面的行,然后加* sed -i 's/^[^#]/*&/g' nginx.conf 更多内容:https://www.cnblo…
1.使用grep -v "^#"  来去掉注释行,其中:-v  就是取相反的   ^# 表示以#开头的行 eg. grep -v "^#" /etc/vsftpd/vsftpd.conf (也可以使用">"来重写配置文件) 2.有时也会连同空行一起去掉,使用管道符来完成(^$表示空行  ) eg. grep -v "^#"  httpd.conf | grep -v "^$"  >> vs…
代码发布时候有的时候需要删除代码注释与空行..方法如下 1.删除注释 方法: 第一步:打开vs2010,使用Ctrl+H快捷键,打开查询替换窗口 第二步:在‘查找选项’中,勾选‘使用’‘正则表达式’ 第三步:在‘查找内容’中,填写正则表达式[\t]*//[^\n]*\n 第四步:‘替换为’空,什么都不填写 第五步:单击‘全部替换’按钮,完成整个项目或者当前文档等替换 举例: 替换前: /// <summary> /// 类注释 /// </summary> public class…
Notepad++ 删除指定字符开头的行的正则表达式 1.删除A之后的所有字符用:A.*$ 2.删除A之前的所有字符用:^([^s]*)A ####如果是其他字符就把A替换为其他字符 注释:如何是特殊字符注意转义 删除注释行,就是#.*$ 删除空行是编辑>行操作>移除空行…
shell编程系列11--文本处理三剑客之sed利用sed删除文本中的内容 删除命令对照表 命令 含义 1d 删除第一行内容 ,10d 删除1行到10行的内容 ,+5d 删除10行到16行的内容 /pattern1/d 删除每行中匹配到pattern1的行内容 /pattern1/,/pattern2/d 删除匹配到pattern1的行直到匹配到pattern2的所有行内容 /pattern1/,10d 删除匹配到pattern1的行到10行的所有行内容 ,/pattern1/d 删除第10行直…
删除命令对照表 练习例子 删除/etc/passwd中的第15行 sed -i '1d' passwd 删除/etc/passwd中的8行到14行的所有内容 sed -i '8,14d' passwd 删除/etc/passwd中的不能登录的用户(筛选条件:/sbin/nologin) sed -i '/\/sbin\/nologin/d' passwd 删除/etc/passwd中以mail开头的行,到以ftp开头行的所有内容 sed -i '/^mail/,/^ftp/d' passwd 删…
用sed删除空行 我的代码如下:class Song def initialize(name)        @name = name    end def tell        puts @name    end end class ZhouSong < Song def initialize(name,artist)        super(name)        @artist = artist    end def tell        super        puts @ar…
visual studio用"查找替换"来删掉源代码中所有//方式的纯注释和空行 注意:包括/// <summary>这样的XML注释也都删掉了. 步骤1/2(删除注释):使用Ctrl+H快速替换功能,查找内容为: ^[ \t]*//[^\n]*\n 替换内容为空(什么都不写),查找范围你自己定(我喜欢选整个解决方案),查找选项要选中使用正则表达式.然后点击全部替换就行了. 这会把原来的一行//的注释删掉,并且不留空行. 步骤2/2(删除空行):然后设置查找内容为 ^(?(…
强悍的 vim -- 删除空行.删除注释以及加注释解注释 原文 https://blog.csdn.net/lanchunhui/article/details/51588198 1. 删除空行空行的构成比较复杂(1) 删除没有内容的空白行:g/^$/d(2) 删除包含空格(%s) 的空白行:g/^%s*$/d2. 删除注释:%s/^#.*$//g如果某些行以若干空格开始,并以换行结束::%s/^[ ]*#.*\n//g3. 删除以//开头的注释$ cat test.txt | grep -v…
Given a C++ program, remove comments from it. The program source is an array where source[i] is the i-th line of the source code. This represents the result of splitting the original source code string by the newline character \n. In C++, there are t…