Skip to content

Instantly share code, notes, and snippets.

@mwicat
Created June 17, 2012 08:59
Show Gist options
  • Save mwicat/2943950 to your computer and use it in GitHub Desktop.
Save mwicat/2943950 to your computer and use it in GitHub Desktop.
Remove blank lines, strip whitespaces, replace multi whitespaces with single one
/^[ \t]*$/d
s/^[ \t]*//
s/[ \t]*$//
s/[ \t][ \t]/\t/g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment