Files
linux-workspace/bashrc
2020-09-14 12:16:11 +02:00

13 lines
223 B
Bash

if [[ $0 != $BASH_SOURCE ]]; then
WORKSPACE=$(dirname $BASH_SOURCE)
for rc_file in $WORKSPACE/rc/*.rc; do
source $rc_file
done
PATH=$($WORKSPACE/bin/path-uniq.py $WORKSPACE/bin)
else
echo "not sourced"
fi