4

I know that you can quickly launch PyCharm to work on a particular Python project directory by just doing:

charm directory

In this case, the charm command lives in /usr/local/bin.

But can do you do the same of AppCode, pointing it to a .xcodeproj or .xcworkspace file/?

fatuhoku
  • 4,815
  • 3
  • 30
  • 70
  • `charm` seems to be a special case: it's a purpose written Python launcher script. Appcode on the other hand cannot rely on the fact that Python is installed on the system (despite a system Python always being available on Mac...) – fatuhoku Oct 11 '13 at 23:00

2 Answers2

7

You can use the standard OS X 'open' command: 'open -a AppCode.app --args ...'. Please see the manual here.

Anton Makeev
  • 1,084
  • 9
  • 6
1

Appcode has built-in terminal tool. In the menu, select

Tools -> Create Command-line launcher...

Hai Feng Kao
  • 5,219
  • 2
  • 27
  • 38