From a1df488c58d83c7a30d940d9f251a1fcdb4750b6 Mon Sep 17 00:00:00 2001 From: tTh Date: Mon, 16 Sep 2024 14:31:42 +0200 Subject: [PATCH] cosmetic --- code/shell/heredoc.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/shell/heredoc.sh b/code/shell/heredoc.sh index dd2c438..46afdbd 100755 --- a/code/shell/heredoc.sh +++ b/code/shell/heredoc.sh @@ -1,10 +1,10 @@ #!/bin/bash -TITLE="Here Doc" +TITLE="Here Doc ($$)" gnuplot << __EOC__ -set term dumb -set grid -set title "$TITLE" -plot [x=0:pi*2] sin(x) + set term dumb size 72,24 + # set grid + set title "$TITLE" + plot [x=0:pi*3] [-1:1] 0.7*sin(x) __EOC__ \ No newline at end of file