Skip to content

Instantly share code, notes, and snippets.

@CavalcanteLeo
Last active November 11, 2016 17:38
Show Gist options
  • Save CavalcanteLeo/e5d492319a231654524422e5c5088dc0 to your computer and use it in GitHub Desktop.
Save CavalcanteLeo/e5d492319a231654524422e5c5088dc0 to your computer and use it in GitHub Desktop.
Open xcode from terminal
function xc {
bold=$(tput bold)
normal=$(tput sgr0)
xcode_proj=`find . -name "*.xc*" -d 1 | sort -r | head -1`
if [[ `echo -n $xcode_proj | wc -m` == 0 ]]
then
echo "No xcworkspace/xcodeproj file found in the current directory."
else
echo "Opening ${bold}\033[1;32m$xcode_proj"
open "$xcode_proj"
fi
}
@CavalcanteLeo
Copy link
Author

captura de tela 2016-11-11 as 15 27 20

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment