16
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Terminal からMacVimとかGUI Applicationの起動

16
Last updated at Posted at 2012-02-08

TerminalからGUI Applicationの起動するには.bashrcに以下の用に alias を追加する。
"open -a APPLICATION"な形式で何でも指定できる。

alias firefox='open -a Firefox'
alias chrome='open -a Google\ Chrome'
alias safari='open -a Safari'
alias mvim='open -a MacVim'

Applicationディレクトリのパスをイチイチ指定しなくてもいい

$ mvim . 

とかでMacVimのファイルブラウザが開くのですごく便利。
TextMateでやる$ mate . 見たいな感じ。

$ firefox http://google.com

とかでFirefoxで指定URLを開ける。

16
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?