Shell supprimer la nouvelle ligne consécutive

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