NEW: added script to create symbolic link to all sublime text projects
This commit is contained in:
parent
79cb486cb6
commit
0e816106dc
|
@ -50,6 +50,7 @@ apps/
|
|||
dev/
|
||||
dmg/
|
||||
ebooks/
|
||||
edu/
|
||||
genymotion-log.zip
|
||||
jdk.table.xml
|
||||
mm.cfg
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue