Rev 20 | Rev 285 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#
# This script executes all of the scripts in ~/.startup.d (in alphabetical order)
#
if [ "${RC_VERBOSE}" = "Y" ]; then echo "Executing ~/.startup"; fi
for f in ~/.startup.d/*.sh
do
if [ "${RC_VERBOSE}" = "Y" ]; then echo "Executing $f"; fi
. $f
if [ "${RC_VERBOSE}" = "Y" ]; then echo "Leaving $f"; fi
done