I noticed my current bash file has export PATH=$PATH:/Applications/MAMP/library/bin
which i put there to set up terminal access to mamp. I\'ve been trying to compi
Very simple:
Get into the directory of the project; you can tell if your in the proper directory by typing "ls" (short for 'list') into terminal and if you see the .xcodeproj suffix on your project name then you're in the right spot.
open projectname.xcodeproj
The project will then open into Xcode
Shortcut: on a macbook you can many times type just the first letter or two of your projectname and if you hit 'tab' it will autocomplete it. So you could type the above code like this...
open pr[tab] then you'd see... open projectname then you'd type... open projectname.xc[tab] and it would finish that too to end up like this... open projectname.xcodeproj