forked from tTh/FloatImg
outfile format now configurable
This commit is contained in:
parent
5da64b6145
commit
379bd1b7de
|
@ -10,7 +10,8 @@ NBRE=320
|
|||
PERIOD=0.0
|
||||
COUNT=compteur
|
||||
OPTIONS=" -v "
|
||||
SHOW="n"
|
||||
SHOW="no"
|
||||
OFORMAT="P_%04d.pnm"
|
||||
|
||||
# ------------------------------------
|
||||
# overide parameters from $PWD
|
||||
|
@ -34,7 +35,7 @@ if [ 1 -eq $# ]
|
|||
then
|
||||
outfile="$1"
|
||||
else
|
||||
outfile=$( printf "P_%04d.pnm" $numero )
|
||||
outfile=$( printf ${OFORMAT} $numero )
|
||||
fi
|
||||
|
||||
# ------------------------------------
|
||||
|
|
Loading…
Reference in New Issue