-
Notifications
You must be signed in to change notification settings - Fork 3
Xcode
bootstraponline edited this page Mar 22, 2016
·
2 revisions
Remove annoying templates.
#!/bin/bash
# Usage:
# $ cd /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Templates
# $ bash ~/remove-boilerplate-comments-from-xcode-templates.sh
# Repeat for /Applications/Xcode.app/Contents/Developer/Library/Xcode/Templates
#
# https://gist.github.com/mx4492/81da9f3c363bc1c44f4e
find -E . -type f \
\( -regex '.*\.[chm]' -or -regex '.*\.swift' \) \
-exec sed -i '' '1,/^$/d' '{}' ';'