|
From: Thomas S. <t.s...@fz...> - 2008-06-02 09:27:50
|
try this script (works here without problems): #!/bin/bash filelist=`ls -1 *.txt` for fname in $filelist ; do echo $fname gnuplot << EOF set term png set out "$fname.png" set autoscale unset label set title "COMMUNICATIONS" plot '$fname' using :5 w impulses EOF done -- View this message in context: http://www.nabble.com/gnuplot-script-aide-tp17559031p17597309.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |