Skip to content

Instantly share code, notes, and snippets.

@theand
Created July 31, 2013 09:30
Show Gist options
  • Select an option

  • Save theand/6120701 to your computer and use it in GitHub Desktop.

Select an option

Save theand/6120701 to your computer and use it in GitHub Desktop.
ln multiple files in current directory.
for file in /vagrant/*.conf; do sudo ln -s $file $(basename $file); done
for file in ../sites-available/*.conf; do sudo ln -s $file $(basename $file); done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment