#!/bin/sh

# This shell scripts execute all *.sh scripts in present directory one by one.
# Place this script in a folder containing multiple *.sh files (e.g., Vc1.Ep0.75.Uc0.vi0.0001.vl0.5.L26.Ni40.Nx40.sh,
# Vc1.Ep0.5.Uc0.vi0.0001.vl0.5.L26.Ni40.Nx40.sh, Vc1.Ep0.55.Uc0.vi0.0001.vl0.5.L26.Ni40.Nx40.sh).
# Then sh xmultishst. All of these *.sh will be executed in turn.

chmod +x *.sh
for file in *.sh; 
do 
echo "executing $file"; 
sh $file;
done


