This commit is contained in:
tTh 2024-09-16 14:31:42 +02:00
parent 9f129f64d9
commit a1df488c58
1 changed files with 5 additions and 5 deletions

View File

@ -1,10 +1,10 @@
#!/bin/bash #!/bin/bash
TITLE="Here Doc" TITLE="Here Doc ($$)"
gnuplot << __EOC__ gnuplot << __EOC__
set term dumb set term dumb size 72,24
set grid # set grid
set title "$TITLE" set title "$TITLE"
plot [x=0:pi*2] sin(x) plot [x=0:pi*3] [-1:1] 0.7*sin(x)
__EOC__ __EOC__