if( !exists("a")) a = 0.1;
set term pngcairo enh font "Arial,10" size 480,360
set out "argin.png" 
plot [0:] exp(-a*x) lw 2 t sprintf("exp(-%.1f*x)",a)
実行時に引数指定しない場合,a=0.1 が実行される.
$ gnuplot argin.plt