Skip to content

Instantly share code, notes, and snippets.

@xaratustrah
Last active August 27, 2018 11:59
Show Gist options
  • Save xaratustrah/25515cb8a692210bdaf855d631b165c1 to your computer and use it in GitHub Desktop.
Save xaratustrah/25515cb8a692210bdaf855d631b165c1 to your computer and use it in GitHub Desktop.
osx_hints.md

OSX hints

Terminal command as app

Open automator and drag run apple script to the pane. Then insert the following:

on run {input, parameters}
	tell application "Terminal"
		activate
		do script with command "COMMAND"
	end tell
end run

where COMMAND is the keyword you change to suit your application.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment