Created
July 31, 2013 09:30
-
-
Save theand/6120701 to your computer and use it in GitHub Desktop.
ln multiple files in current directory.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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