Compare commits

..

2 commits

2 changed files with 36 additions and 0 deletions

31
Landau_plot.sh Executable file
View file

@ -0,0 +1,31 @@
echo "Hallo Welt!"
echo "$1"
fpl=$1
x=4
echo "$fpl"
#fp="${fpl::-${#fpl}-$x}"
fp="${fpl::-4}"
echo "$fp"
#echo "$neu" # Ausgabe: "Hallo"
fpg="$fp.pyhist"
echo "$fpg"
./Data_prep.py -f $1
#$fpg = $fp.gpt
#gnuplot -e "inputfile='${fpg}'" Plot_hist.gp &
gnuplot -e "inputfile='${fpg}'" Plot_hist.gp &
zaehler=1
while [ $zaehler -le 5 ]
do
#echo "Ausführung $zaehler"
./Data_prep.py -f $1
#zaehler=$((zaehler + 1))
sleep 1 # 5 Sekunden warten
done

5
Plot_hist.gp Normal file
View file

@ -0,0 +1,5 @@
set terminal qt
set key autotitle columnhead
plot for [i=2:49] inputfile using 1:i with steps
pause 60
reread