Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dixonge/2c34fe14729faf4d1777c0a017bc97e1 to your computer and use it in GitHub Desktop.
Save dixonge/2c34fe14729faf4d1777c0a017bc97e1 to your computer and use it in GitHub Desktop.
Add a line of text to the beginning of all files in a folder
find ./ -type f -exec sed -i '1s/^/ \n/' {} \; 

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