Answers:
这似乎可行,但我并未对此进行深入思考:
sed -e '/^[[:space:]]*#/d'
awk
解决方案是反转匹配您的模式。
$> cat ./text
elephant
# Master socket provides access to userdb information. It's typically
zoo
#ok
penguin
# !
$> awk '!/^(\ )*#/ {print $0}' ./text
elephant
zoo
penguin
awk '/^ *#/{next}1' file
应该足够好
perl -ne 'print if ! /^\s*#/' ./text
awk '!/^ *#/' ./text
。