7 lines
86 B
Bash
7 lines
86 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
gnuplot << __EOC__
|
||
|
set term dumb
|
||
|
set grid
|
||
|
plot [x=0:pi*2] sin(x)
|
||
|
__EOC__
|