manager/config/bash/bashrc.d/local_software

10 lines
219 B
Text
Raw Normal View History

2022-04-18 00:14:34 +01:00
if [[ -d "$HOME/.local/software" ]]; then
for dir in ${HOME}/.local/software/*; do
dir=${dir:A}
if [[ -d "$dir/bin" ]]; then
export PATH="$dir/bin:$PATH"
fi
done
fi
unset dir