NEW: added scripts to jump to my folders automagically

This commit is contained in:
JohnE 2019-05-16 12:10:11 -07:00
parent a758bd8ea5
commit ce1b5fc469
2 changed files with 49 additions and 0 deletions

18
scripts/cueme Executable file
View File

@ -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

31
scripts/ncww Executable file
View File

@ -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