How to open Xcode from terminal?

前端 未结 6 1930
囚心锁ツ
囚心锁ツ 2021-01-30 05:04

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

6条回答
  •  情深已故
    2021-01-30 05:36

    If open .xcodeproj doesn't work, then you can use the following to force Xcode to open via terminal.

    Step 1.

    Open Terminal. I am assuming you know how to do this, because your question was how to open Xcode in the terminal.

    Step 2.

    Type the following line in terminal. This will open your .bash_profile with vim (a terminal text editor). The ~/ means that it will open it in your home directory. So your current location doesn't matter.

    vim ~/.bash_profile
    

    Step 3.

    When using vim you will need to go into insert mode, which basically means you can start typing into the file. To do this you will just need to hit the i key.

    i      // <- this will get you into insert mode
    

    Step 4.

    Then type the following on it's own line in .bash_profile. This tells bash, to set an alias up, the alias's name will be xcode, and the alias value will be open -a Xcode. Make sure you do not have any spaces on the left or right of the equals sign (=).

    alias xcode="open -a Xcode"
    

    Step 5.

    Since we went into insert mode by using the i key, you need to hit the ESC to exit insert mode. then hit the :wqreturn key to escape, write, and quit.

    ESC    // <- this will exit insert mode
    :wq    // <- writes and quit the file
    

    Step 6.

    This will need to reload your bash profile in bash, after making changes to it. The . will basically run your .bash_profile again.

    . ~/.bash_profile
    

    Step 7.

    Using the alias.

    Make sure you are in the same directory as the name.xcodeproj, check this by using ls. If you see it do the following:

    xcode name.xcodeproj
    

    obviously you want to replace name with the file name

提交回复
热议问题