7 lines
96 B
Bash
7 lines
96 B
Bash
WORKSPACE=$(dirname "$0")
|
|
|
|
for rc_file in $WORKSPACE/rc/*.rc; do
|
|
echo "source $rc_file"
|
|
done
|
|
|