Skip to content

Instantly share code, notes, and snippets.

@goranmoomin
Last active July 7, 2020 09:28
Show Gist options
  • Save goranmoomin/8062ae6c2ebaecbe0e6b6e321d6fbc14 to your computer and use it in GitHub Desktop.
Save goranmoomin/8062ae6c2ebaecbe0e6b6e321d6fbc14 to your computer and use it in GitHub Desktop.
Xcode remove `//__FILEHEADER__`
#!/bin/bash
grep -l FILEHEADER -R /Applications/Xcode.app/Contents/Developer/Library/Xcode/Templates | grep -v plist | while IFS= read -r file
do
sudo sed -i '' '/\/\/___FILEHEADER___/d' "$file"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment