Skip to content

Instantly share code, notes, and snippets.

@dora-gt
Created January 3, 2012 11:35
Show Gist options
  • Save dora-gt/1554582 to your computer and use it in GitHub Desktop.
Save dora-gt/1554582 to your computer and use it in GitHub Desktop.
How to make a new window in Terminal with AppleScript

How to make a new window in Terminal with AppleScript

Just do like this:

do script ""

AppleScript で Terminal 上に新規ウィンドウを作成する方法

単に、"" というスクリプトを実行させれば OK です。

do script ""
on run
tell application "Terminal"
do script ""
end tell
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment