12 lines
150 B
Bash
12 lines
150 B
Bash
|
#!bin/sh
|
||
|
for file in ./*
|
||
|
do
|
||
|
if test -d $file
|
||
|
then
|
||
|
echo executing $file
|
||
|
cd $file
|
||
|
bash run.sh
|
||
|
cd ..
|
||
|
fi
|
||
|
done
|