Last active
November 14, 2017 00:42
-
-
Save danguilherme/997006f2bc085d6b4d89a6f6acd4d07b to your computer and use it in GitHub Desktop.
Windows symlink
This file contains 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
# good read: https://www.howtogeek.com/howto/16226/complete-guide-to-symbolic-links-symlinks-on-windows-or-linux/ | |
cd C:\bin | |
mklink cmder.exe C:\tools\cmder\Cmder.exe # creates a symlink to the binary, with no .lnk | |
mklink curl.exe C:\tools\curl-7.53.1-win64-mingw\bin\curl.exe | |
# para pastas | |
mklink /J gludum "C:\Users\Guilherme Ventura\git\gludum\gludum\" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment