zsh add to path

Solutions on MaxInterview for zsh add to path by the best coders in the world

showing results for - "zsh add to path"
Marlene
12 Aug 2018
1# append
2path+=('/home/david/pear/bin')
3# or prepend
4path=('/home/david/pear/bin' $path)
Paolo
05 Apr 2017
1# append
2path+=('/home/kevin/pear/bin')
3# or prepend
4path=('/home/kevin/pear/bin' $path)
5# export to sub-processes (make it inherited by child processes)
6export PATH
7
similar questions
queries leading to this page
zsh add to path