.dotfiles/bash/path.host

8 lines
132 B
Bash

# vim: ft=sh
for i in $(find $HOME/scripts/distrobox -maxdepth 1); do
if [ -d "$i" ]; then
PATH="$i:$PATH"
fi
done