Rev 20 | Rev 285 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
213 | dhylands | 1 | # |
2 | # This script executes all of the scripts in ~/.startup.d (in alphabetical order) |
||
3 | # |
||
4 | |||
5 | if [ "${RC_VERBOSE}" = "Y" ]; then echo "Executing ~/.startup"; fi |
||
6 | |||
7 | for f in ~/.startup.d/*.sh |
||
8 | do |
||
9 | if [ "${RC_VERBOSE}" = "Y" ]; then echo "Executing $f"; fi |
||
10 | . $f |
||
11 | if [ "${RC_VERBOSE}" = "Y" ]; then echo "Leaving $f"; fi |
||
12 | done |
||
13 | |||
14 |