Answers for "how to add something to path in zsh"

0

setting up path in zsh

# append
path+=('/home/kevin/pear/bin')
# or prepend
path=('/home/kevin/pear/bin' $path)
# export to sub-processes (make it inherited by child processes)
export PATH
Posted by: Guest on August-23-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language