Dotfiles/.zsh/lib/path.zsh

10 lines
103 B
Bash
Raw Normal View History

2014-04-16 21:50:26 +02:00
typeset -U path
pathdirs=()
2014-04-16 21:50:26 +02:00
for dir in $pathdirs; do
if [ -d $dir ]; then
path+=$dir
fi
done