how to add path to bashrc 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: bash how to define a path
path_to_file="/path/to/file"
echo "$path_to_file"