1.

Write A Command Remove All Empty Lines:

Answer»

SED '/^$/d' test_file.txt

sed '/./!d' test_file.txt

sed '/^$/d' test_file.txt

sed '/./!d' test_file.txt



Discussion

No Comment Found