答案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