26 lines
942 B
Bash
Executable File
26 lines
942 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# osascript -e "tell application \"Terminal\" " -e "tell application \"System Events\"
|
|
CUEME1=/Volumes/malloc-dev/cueme/source/cueme
|
|
CUEME2=/Volumes/malloc-dev/cueme/source/cueme/app/source/fapp
|
|
CUEME3=/Volumes/malloc-dev/cueme/source/cueme/dashboard/source/fapp_web
|
|
|
|
|
|
osascript \
|
|
-e "tell application \"Terminal\"" \
|
|
-e "tell application \"System Events\" to keystroke \"t\" using {command down}" \
|
|
-e "do script \"cd $CUEME1; clear\" in front window" \
|
|
-e "end tell" > /dev/null
|
|
|
|
osascript \
|
|
-e "tell application \"Terminal\"" \
|
|
-e "tell application \"System Events\" to keystroke \"t\" using {command down}" \
|
|
-e "do script \"cd $CUEME2; clear\" in front window" \
|
|
-e "end tell" > /dev/null
|
|
|
|
osascript \
|
|
-e "tell application \"Terminal\"" \
|
|
-e "tell application \"System Events\" to keystroke \"t\" using {command down}" \
|
|
-e "do script \"cd $CUEME3; clear\" in front window" \
|
|
-e "end tell" > /dev/null
|