.dotfiles/bash/path.host

6 lines
115 B
Plaintext

for i in `find $HOME/scripts/distrobox -maxdepth 1`; do
if [ -d $i ]; then
PATH="$i:$PATH"
fi
done