Skip to content

Instantly share code, notes, and snippets.

@ardydedase
Created April 6, 2013 13:36
Show Gist options
  • Save ardydedase/5326146 to your computer and use it in GitHub Desktop.
Save ardydedase/5326146 to your computer and use it in GitHub Desktop.
Create symlink to a bunch of folders
for i in ~/vagrant/webinabox/projects/*;
do
app=${i/\/Users\/ardydedase\/vagrant\/webinabox\/projects\/};
echo $app;
ln -s $i $app;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment