outfile format now configurable

This commit is contained in:
tonton Th 2020-01-28 21:57:02 +01:00
parent 5da64b6145
commit 379bd1b7de
1 changed files with 3 additions and 2 deletions

View File

@ -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
# ------------------------------------