I have a bash script that executes gnuplot:
#!/bin/bash
# some bash scripting here
gnuplot -persist <<EOF
# some gnuplot scripting here
EOF
If the script wa executed I return to the usual terminal input. But what I would like to have is that the gnuplot command prompt stays open such that I can enter gnuplot commands in order to further manipulate the plot.
Is that possible?