Shell Remova a nova linha consecutiva
# remove blank lines
# technically, remove the extra repeated consecutive newlines (\n\n -> \n)
sed '/^$/d'
Rich Raccoon
# remove blank lines
# technically, remove the extra repeated consecutive newlines (\n\n -> \n)
sed '/^$/d'