diff options
author | simulation <simulation@nlo-ext3.ioq.uni-jena.de> | 2016-02-09 09:54:46 +0100 |
---|---|---|
committer | simulation <simulation@nlo-ext3.ioq.uni-jena.de> | 2016-02-09 09:54:46 +0100 |
commit | 6be0f285adb27f60f058c2937a7885899e17cb88 (patch) | |
tree | be50a15314fe28c5b7b8f721233a34e71ca5b3b4 /postpost/all_gnuplot | |
download | lpic-6be0f285adb27f60f058c2937a7885899e17cb88.tar.xz |
Diffstat (limited to 'postpost/all_gnuplot')
-rwxr-xr-x | postpost/all_gnuplot | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/postpost/all_gnuplot b/postpost/all_gnuplot new file mode 100755 index 0000000..2b94f35 --- /dev/null +++ b/postpost/all_gnuplot @@ -0,0 +1,18 @@ +#!/bin/bash + +for t in $1*/Post +do + if [ -e $t ] + then + for s in "ft-fm#p_refl#2 ft-fp#p_trns#8 ft-gm#s_trns#8 ft-gp#s_refl#2" + do + inf=$(echo $s | tr "#" " " | awk '{print $1}') + if [ -e $t/$inf ] + then + echo $t/$inf $s; + directory=$t input=$inf outpart=$(echo $s | tr "#" " " | awk '{print $2}') column=$(echo $s | tr "#" " " | awk '{print $3}') gnuplot plotspectra.gnu + fi + done + fi +done + |