-
Notifications
You must be signed in to change notification settings - Fork 3
Xcode
bootstraponline edited this page Apr 15, 2019
·
2 revisions
sudo xcode-select -switch /Applications/Xcode.app/sudo xcode-select -switch /Applications/Xcode_10.1.app/Contents/Developerxcode-select -p
#!/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' '{}' ';'