Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wongzigii/a96816dfb124278fc50c9820ff60a6dc to your computer and use it in GitHub Desktop.
Save wongzigii/a96816dfb124278fc50c9820ff60a6dc to your computer and use it in GitHub Desktop.
Remove useless header comments from Xcode templates
#!/bin/bash
find -E $(xcode-select --print-path) -regex '.*___\.(c|h|m|swift)' -print0 | xargs -0 -n 1 sed -i '' '1,/^$/d'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment