Created
June 15, 2021 21:33
-
-
Save BlazerYoo/417eb382fce5c1b63ef746b74fa09e8a to your computer and use it in GitHub Desktop.
Append (add to end) to path
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
set PATH=%PATH%;C:\your\path\here\ |
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
setx /M PATH "$($env:path);C:\your\path\here\" |
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
PATH=$PATH:~/your/path/here/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment