Skip to content

Instantly share code, notes, and snippets.

@maxchuquimia
Last active January 14, 2020 05:44
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 maxchuquimia/25dd6b23dbe95d38cf05051350921ce2 to your computer and use it in GitHub Desktop.
Save maxchuquimia/25dd6b23dbe95d38cf05051350921ce2 to your computer and use it in GitHub Desktop.
Find Swift files with whitespace-only lines and replace them with empty lines
while read -r line ; do echo "$line"; sed -i '' 's/^ *$//g' "$line"; done < <(grep -rl --exclude-dir Pods --include "*.swift" "^ *$" .)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment