Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to add a directory in path linux

# For this Purpose you have to edit ~/.bashrc file.
# So in terminal:
nano ~/.bashrc
# Now add this command to the file and instead of ADDRESS,
# write your desired address
export PATH=$PATH:ADDRESS
# Like:
export PATH=$PATH:/usr/local/hadoop
Comment

add directory to path windows 10

setx /M PATH "%PATH%;<your-new-path>"
Comment

how to add a directory to path in linux

export PATH="$HOME/bin:$PATH"
Comment

add directory to path on linux

export PATH="$HOME/bin:$PATH"Copied!
Comment

Adding directory to PATH

C:> echo %PATH:;=&echo.%
Comment

PREVIOUS NEXT
Code Example
Shell :: download a github folder 
Shell :: WSL2 .wslconfig Windows 
Shell :: add remote origin 
Shell :: how to calculate nearest location using longitude and latitude 
Shell :: Jupyter %%time 
Shell :: Can we install XAMPP on Linux from a given link 
Shell :: mac send terminal output to clipboard 
Shell :: git revert last 2 commits 
Shell :: use docker redis remotely 
Shell :: cmd move overwrite file 
Shell :: uninstall brew from mac 
Shell :: powershell add line to text file 
Shell :: how to ignore .idea in Github 
Shell :: git how to not commit but keep changes 
Shell :: reset to commit 
Shell :: sail command not found 
Shell :: powershell compare 
Shell :: pytest debug tests 
Shell :: git worktree prune 
Shell :: golang compile with injected variable 
Shell :: installing android studio on kali linux 
Shell :: tinymce vue 2 
Shell :: bash zip file without parent directory 
Shell :: shell echo new line into file 
Shell :: dpkg command 
Shell :: ansible skip tag 
Shell :: git restoring deleted files 
Shell :: linux chown 
Shell :: powershell which equivalent 
Shell :: Best way to change the file extension in powershell 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =