8 lines
221 B
Bash
8 lines
221 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
SH_DIR_AUTORUN=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
||
|
|
||
|
source $SH_DIR_AUTORUN/../config.sh
|
||
|
|
||
|
find $RICE_DIR_AUTORUN -type f -executable | while read line ; do source $line ; done
|