Command line筆記

林彥良
Nov 10, 2020

Windows command line:

加路徑到環境變數:

In current session:

set PATH=directory;%PATH%

In permanent session:

setx PATH “directory;%PATH%”

To view the system path:

echo %PATH%

--

--