Skip to content

Instantly share code, notes, and snippets.

@ssoper
Created December 8, 2014 13:33
Show Gist options
  • Save ssoper/cfea9de56206189a0dd1 to your computer and use it in GitHub Desktop.
Save ssoper/cfea9de56206189a0dd1 to your computer and use it in GitHub Desktop.
Remove blank lines from a file that start with empty space. Fairly common with Xcode files.
sed -i '' 's/^ *$//g' $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment