답변1
텍스트 사진을 게시하지 말고 터미널에서 질문에 복사하여 붙여넣으세요.
빈 줄을 필터링하는 방법에는 여러 가지가 있습니다. 가장 간단한 두 가지는 다음과 같습니다.
그리고 grep
:
grep -v '^$' /path/to/input > /path/to/output
그리고 sed
:
sed '/^$/d' /path/to/input > /path/to/output
sed --in-place '/^$/d' /path/to/input # modify the file rather than creating a new one