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