You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
453 B
26 lines
453 B
#!/bin/bash |
|
|
|
cmd="plot " |
|
echo $# |
|
while [ $# -gt 1 ]; do |
|
if [[ "$1" == *.* ]]; then |
|
cmd="$cmd 'plot.dat' using 1:'$1'," |
|
else |
|
cmd="$cmd 'plot2.dat' using 1:'$1'," |
|
fi |
|
shift |
|
done |
|
if [[ "$1" == *.* ]]; then |
|
cmd="$cmd 'plot.dat' using 1:'$1'" |
|
else |
|
cmd="$cmd 'plot2.dat' using 1:'$1'" |
|
fi |
|
echo $cmd |
|
cat <<EOF > _plot.gnu |
|
set style data lines |
|
set xlabel "time(s)" |
|
$cmd |
|
pause -1 "hit return to exit" |
|
EOF |
|
gnuplot _plot.gnu |
|
|
|
|