Menyiapkan jalur di 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
PDXfoster