Answers for "powershell add to env path"

0

powershell add to env path

$env:Path = "SomeRandomPath";             (replaces existing path) 
$env:Path += ";SomeRandomPath"            (appends to existing path)
Posted by: Guest on July-09-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language