add path to a command code example
Example 1: cmd add to path
# update path only for the current session
set PATH=%PATH%;C:\your\path\here\
# update the path permanently
setx /M PATH "%PATH%;C:\your\path\here\"
Example 2: how to add a directory to path in linux
nano ~/.bashrc