mirror of
git://projects.qi-hardware.com/antorcha.git
synced 2024-11-01 17:25:55 +02:00
8 lines
166 B
Bash
Executable File
8 lines
166 B
Bash
Executable File
#!/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
|