Skip to content

Instantly share code, notes, and snippets.

@pulketo
Created January 9, 2019 19:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pulketo/8b119045ee175583ff176fe3a14e39e5 to your computer and use it in GitHub Desktop.
Save pulketo/8b119045ee175583ff176fe3a14e39e5 to your computer and use it in GitHub Desktop.
Delete empty lines with "sed" | Borrar lineas en blanco con "sed"
cat file.in | sed '/^$/d' >file.out
#
sed -i '/^$/d' file.in.place
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment