1. sed command
sed '/^$/d' a.txt > output.txt
2. vim command
:g/^$/d
3. cat command
cat -s a.txt
4. vim command
:%!cat -s
1. sed command
sed '/^$/d' a.txt > output.txt
2. vim command
:g/^$/d
3. cat command
cat -s a.txt
4. vim command
:%!cat -s