osxenv_pub/scripts/create_links.sh

11 lines
324 B
Bash
Executable File

#/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