$ cat 파일명 | grep -v ^$ # 또는 $ grep -e "^$" -v 파일명
cat 파일명 | egrep -v ^[[:space:]]*$
cat 파일명 | egrep -v '^[[:space:]]*(#.*)?$'