第一种方法

[apache1@test2 conf]$ grep -v "#" httpd.conf |grep -v "^$" >>httpd.conf.bak

-v排除

^空行

>>追加

第二种方式

more  文件  |grep  ^[^#]