Created
September 20, 2015 07:55
-
-
Save sushihangover/7563e1707e98cdf2b285 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
read -r -d '' script <<'EOF' | |
on run argv | |
tell application "iTerm" | |
activate | |
set myterm to (make new terminal) | |
tell myterm | |
launch session "Default" | |
tell the last session | |
repeat with arg in argv | |
say arg | |
write text arg | |
end repeat | |
end tell | |
end tell | |
end tell | |
end run | |
EOF | |
echo "$script" | osascript ``-'' $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I had to change te least line to
echo "$script" | osascript ``-'' "$@"
to make it work for me. Otherwise, it would split the commands (i.e. "ls -l" into "ls" and "-l").