|
From: tmacchant <tma...@ya...> - 2015-06-18 00:22:54
|
> export num=$1 > gnuplot -e "fileW='/dev/shm/waitingTime$1.txt'; > fileT='/dev/shm/thinkingTime$1.txt'" file.gnuplot I have been long time only window user and became also Linux user very recently. (But I have experienced msys and cygwin.) I have also Googled. Does the below work? $ cmd=$(printf "gnuplot -e \"fileW='/dev/shm/waitingTime%d.txt'; fileT='/dev/shm/thinkingTime%d.txt'\" file.gnuplot" $1 $1); $cmd Tatsuro -- View this message in context: http://gnuplot.10905.n7.nabble.com/passing-an-argument-to-gnuplot-script-tp94p19544.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |