Skip to content

Instantly share code, notes, and snippets.

@dawsontoth
Created December 6, 2012 15:30
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dawsontoth/4225350 to your computer and use it in GitHub Desktop.
Save dawsontoth/4225350 to your computer and use it in GitHub Desktop.
osascript to focus terminal, send ctrl+c, then up, then enter.
tell application "System Events"
tell application "Terminal" to activate
keystroke "c" using {control down}
key code 126
key code 52
end tell
@inspire22
Copy link

thanks!

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