Skip to content

Instantly share code, notes, and snippets.

@DrJume
Created December 10, 2020 05:58
Show Gist options
  • Save DrJume/f521527217d0b694652b9aa76bea429d to your computer and use it in GitHub Desktop.
Save DrJume/f521527217d0b694652b9aa76bea429d to your computer and use it in GitHub Desktop.
AppleScript open terminal snippets
tell application "Terminal"
	do script "echo Hello world"
end tell
tell application "iTerm"
	set newWindow to (create window with default profile)
	tell current session of newWindow
		write text "echo Hello world"
	end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment