.dotfiles/bash/path.host

6 lines
115 B
Plaintext
Raw Normal View History

2023-01-09 03:52:24 +00:00
for i in `find $HOME/scripts/distrobox -maxdepth 1`; do
if [ -d $i ]; then
PATH="$i:$PATH"
fi
done