Skip to content

Instantly share code, notes, and snippets.

@geoffrepoli
Created November 2, 2016 15:35
Show Gist options
  • Save geoffrepoli/79397cc179270ab7bcc3c5e020893195 to your computer and use it in GitHub Desktop.
Save geoffrepoli/79397cc179270ab7bcc3c5e020893195 to your computer and use it in GitHub Desktop.
Run parallel processes in AppleScript
set subShell1 to "(your_command1)"
set subShell2 to "(your_command2)"
set yourScript to subShell1 & " & " & subShell2
do shell script yourScript
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment