当前位置: > shell编程 >

去除文件内容中的注释与空行的命令

时间:2014-06-23 02:20来源:linux.it.net.cn 作者:IT网
去除文件内容中的注释与空行:


cat file |sed -e '/^$/d' -e '/^#/d'

cat file |sed -n -r '/^$|#/!p'
(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容