NEW: added script to create symbolic link to all sublime text projects

This commit is contained in:
JohnE 2018-10-27 15:01:22 -07:00
parent 79cb486cb6
commit 0e816106dc
2 changed files with 12 additions and 1 deletions

1
.gitignore vendored
View File

@ -50,6 +50,7 @@ apps/
dev/ dev/
dmg/ dmg/
ebooks/ ebooks/
edu/
genymotion-log.zip genymotion-log.zip
jdk.table.xml jdk.table.xml
mm.cfg mm.cfg

10
scripts/create_links.sh Executable file
View File

@ -0,0 +1,10 @@
#/bin/sh
# create links for sublime text project files
# similar to an index, to quickly find sublime text projects...because the recents list SUCKS, only 10 items
PWD=`pwd`
if [[ -d /Volumes/malloc-dev/sublimetext ]]; then
cd /Volumes/malloc-dev/sublimetext
find ../ -name "*.sublime-*" -exec ln -s {} \;
fi
cd $PWD