7 lines
102 B
Gnuplot
Executable File
7 lines
102 B
Gnuplot
Executable File
#!/usr/bin/gnuplot
|
|
|
|
while(1){
|
|
plot 'coords' using 1:6 with lines title columnheader
|
|
pause 1
|
|
}
|