mirror of
git://projects.qi-hardware.com/antorcha.git
synced 2024-11-01 19:06:16 +02:00
8 lines
166 B
Plaintext
8 lines
166 B
Plaintext
|
#!/bin/sh
|
||
|
./alg >_out
|
||
|
gnuplot -persist <<EOF
|
||
|
set style data lines
|
||
|
plot "_out" using 1, "_out" using 2, "_out" using 3, "_out" using 4, \
|
||
|
"_out" using (100*\$5)
|
||
|
EOF
|