...
I then have a similar setup for driving the plots. Here is the bash driver (name this makeplotsmakeplot.sh
):
Code Block |
---|
#!/bin/bash id=$1 d=$PWD cd $1 awk '/psi4/ {print $1 " " $13}' stat.log | head -n -1 > psi4.dat awk '/run-local/ {print $1 " " $13}' stat.log | head -n -1 > main.dat awk '/psi4/ {print $1 " " $22}' stat.log | tr -d "[A-Z]" | head -n -1 > memlimit.dat if [ -f out.log ] ; then awk '/Cache is/ {print $1 " " $4}' out.log > cache.dat fi python3 $d/plot.py cd $d |
...