이전 판역링크PDF로 내보내기Fold/unfold all맨 위로 Share via Share via... Twitter LinkedIn Facebook Pinterest Telegram WhatsApp Yammer Reddit최근 바뀜Send via e-Mail인쇄고유링크 × 목차 grep 공백/주석 제거 빈줄 제거 공백문자 있는 줄까지 제외 ''#''으로 시작하는 줄까지 제외 참조링크 토론 grep 공백/주석 제거 빈줄 제거 $ cat 파일명 | grep -v ^$ # 또는 $ grep -e "^$" -v 파일명 공백문자 있는 줄까지 제외 cat 파일명 | egrep -v ^[[:space:]]*$ ''#''으로 시작하는 줄까지 제외 cat 파일명 | egrep -v '^[[:space:]]*(#.*)?$' 참조링크 https://stackoverflow.com/questions/3432555/remove-blank-lines-with-grep 로그인하면 댓글을 남길 수 있습니다. grep_공백_주석_제거.txt 마지막으로 수정됨: 2022/02/08 05:59저자 koov