NEW: added scripts to jump to my folders automagically
This commit is contained in:
parent
a758bd8ea5
commit
ce1b5fc469
|
@ -0,0 +1,18 @@
|
||||||
|
#!/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
|
||||||
|
|
||||||
|
|
||||||
|
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
|
|
@ -0,0 +1,31 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# osascript -e "tell application \"Terminal\" " -e "tell application \"System Events\"
|
||||||
|
NC1=/Volumes/malloc-dev/nextcrypto/source/nc-ww
|
||||||
|
NC2=$NC1/app/ccc_fplugin
|
||||||
|
NC3=$NC1/app/ccc_gui_fb
|
||||||
|
NC4=$NC1/nc/nc-wc-ndk
|
||||||
|
|
||||||
|
osascript \
|
||||||
|
-e "tell application \"Terminal\"" \
|
||||||
|
-e "tell application \"System Events\" to keystroke \"t\" using {command down}" \
|
||||||
|
-e "do script \"cd $NC1; 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 $NC2; 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 $NC3; 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 $NC4; clear\" in front window" \
|
||||||
|
-e "end tell" > /dev/null
|
Loading…
Reference in New Issue