TetaTricks/code/shell/heredoc.sh

10 lines
123 B
Bash
Raw Normal View History

2023-10-08 21:56:41 +02:00
#!/bin/bash
2023-11-29 14:12:03 +01:00
TITLE="Here Doc"
2023-10-08 21:56:41 +02:00
gnuplot << __EOC__
set term dumb
set grid
2023-11-29 14:12:03 +01:00
set title "$TITLE"
2023-10-08 21:56:41 +02:00
plot [x=0:pi*2] sin(x)
__EOC__