Created
November 2, 2016 15:35
-
-
Save geoffrepoli/79397cc179270ab7bcc3c5e020893195 to your computer and use it in GitHub Desktop.
Run parallel processes in AppleScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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