.dotfiles/bash/path.host

8 lines
132 B
Plaintext
Raw Normal View History

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