CuPBoP/compilation/examples/run_example.sh

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