#删除注释行
$ sed '/^#/d' <file>
$ sed '/#/d'  <file>

# 删除空行
$ sed '/^$/d' <file>
# 删除空行并写入到文件
$ sed -i '/^$/d' <file>

Linux sed删除文件注释行并删除空行_其他