12 lines
104 B
Bash
12 lines
104 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
MYDIR=`dirname $0`
|
||
|
|
|
||
|
|
cd ${MYDIR}
|
||
|
|
|
||
|
|
for PRG in `ls scripts/*.sh`; {
|
||
|
|
|
||
|
|
sh ${PRG} && echo $PRG
|
||
|
|
|
||
|
|
}
|