0
2

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 1 year has passed since last update.

【Mac】ターミナルでアプリケーションの起動や終了をする方法

Posted at

アプリケーションを起動する

アプリケーションを起動するには次のようにコマンドを実行します。

osascript -e 'tell application "アプリケーション名" to run'

以下のコマンドを実行するとリマインダーが起動します。

osascript -e 'tell application "Reminders" to run'

次のように実行してもアプリケーションを起動できます。
こちらの場合には上記と違い、ウィンドウも表示されます。

osascript -e 'tell application "アプリケーション名" to activate'

以下のコマンドを実行するとリマインダーが起動し、ウィンドウが表示されます。

osascript -e 'tell application "Reminders" to activate'

また、次のコマンドもactivateと同様の結果になります。

open -a 'アプリケーション名.app'

アプリケーションを終了する

アプリケーションを起動するには次のようにコマンドを実行します。

osascript -e 'tell application "アプリケーション名" to quit'

以下のコマンドを実行するとリマインダーが終了します。

osascript -e 'tell application "Reminders" to quit'
0
2
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
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?