关于sed进行去掉多行注释

关于sed进行去掉多行注释

现有一个文件:
test:
a
b
#c
#d
#e
#f
g

我如何用一条sed命令来将c,d,e,f前的注释去掉啊
sed -i 's/^#//' 不可以吗?
谢谢!
以你的sample 為標準,用 tr 都可以
[victor@localhost ~]$ cat junk.txt
a
b
#c
#d
#e
#f
g
[victor@localhost ~]$ tr -d '#' < junk.txt
a
b
c
d
e
f
g
journalist