I'm using gnuplot from a bash script and I have to divide values from two columns:
plot "results.csv" using 1:($4/$6) notitle with lp
This works fine in gnuplot interactive mode, but when called from a script, the column values get mixed up with bash script arguments...How can I pass the col. values from the script?