TetaTricks/code/shell/heredoc.sh

10 lines
160 B
Bash
Raw Normal View History

2023-10-08 21:56:41 +02:00
#!/bin/bash
2024-09-16 14:31:42 +02:00
TITLE="Here Doc ($$)"
2023-11-29 14:12:03 +01:00
2023-10-08 21:56:41 +02:00
gnuplot << __EOC__
2024-09-16 14:31:42 +02:00
set term dumb size 72,24
# set grid
set title "$TITLE"
plot [x=0:pi*3] [-1:1] 0.7*sin(x)
2023-10-08 21:56:41 +02:00
__EOC__