forked from Snoweuph/Dotfiles
7 lines
221 B
Bash
Executable file
7 lines
221 B
Bash
Executable file
#!/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
|