Update plots
This commit is contained in:
parent
88958dd9ef
commit
9249fff67e
@ -1,11 +1,17 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
mv wer.txt wer1.txt
|
||||||
|
mv srr.txt srr1.txt
|
||||||
|
|
||||||
|
cat wer1.txt | tail -n 50 > wer.txt
|
||||||
|
cat srr1.txt | tail -n 50 > srr.txt
|
||||||
|
|
||||||
for FILE in "$@"
|
for FILE in "$@"
|
||||||
do
|
do
|
||||||
gnuplot <<- EOF
|
gnuplot <<- EOF
|
||||||
set term png
|
set term png
|
||||||
set title "Graph - ${FILE}"
|
set title "Graph - ${FILE}"
|
||||||
set output "${FILE}.png"
|
set output "${FILE}.png"
|
||||||
plot "${FILE}.txt" using 1 with lines
|
plot "${FILE}.txt"
|
||||||
EOF
|
EOF
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user