ProgettoMartinelli2023/Fig_src/gnuplot/bin/genAll_WP.bash

22 lines
252 B
Bash
Executable File

#!/bin/bash
# gen data and plots for each dir starting with MS in current dir
MYDIR="$PWD"
for i in `ls -1d *|grep WP` ; do
echo ""
echo "cd ${MYDIR}/${i}"
echo ""
cd "${MYDIR}/${i}"
./bin/go.bash
done
echo ""
echo "cd $MYDIR"
echo ""
cd $MYDIR