Skip to content

Instantly share code, notes, and snippets.

@peterfpeterson
Last active August 29, 2015 14:05
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 peterfpeterson/39b4abe7706cfe83f735 to your computer and use it in GitHub Desktop.
Save peterfpeterson/39b4abe7706cfe83f735 to your computer and use it in GitHub Desktop.
Two lines of sed in a bash script to fix up whitespace in files
#!/bin/bash
# remove all trailing whitespace
sed -i 's/[ \t]*$//' $1
# replace tabs with 4 places
sed -i 's/[\t]/ /g' $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment