Xcode初始化设置

#!/bin/bash

# this script can help to initialize xcode environment, including 
# set organization name, set author name.

ORGANIZATION_NAME="";
FULL_USERNAME="";

defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"ORGANIZATIONNAME"="$ORGANIZATION_NAME";}'
defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"FULLUSERNAME"="$FULL_USERNAME";}'
 
 

猜你喜欢

转载自runningeagle.iteye.com/blog/1837305