Skip to content

Instantly share code, notes, and snippets.

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 dixonge/b1b22f2eed8f1e6749caebf931e52601 to your computer and use it in GitHub Desktop.
Save dixonge/b1b22f2eed8f1e6749caebf931e52601 to your computer and use it in GitHub Desktop.
Delete a line only if blank in all files in a folder
find ./ -type f -exec sed '1{/^$/d}' {} \;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment