2
2

outfile format now configurable

Dieser Commit ist enthalten in:
tonton Th
2020-01-28 21:57:02 +01:00
Ursprung 5da64b6145
Commit 379bd1b7de

Datei anzeigen

@@ -10,7 +10,8 @@ NBRE=320
PERIOD=0.0 PERIOD=0.0
COUNT=compteur COUNT=compteur
OPTIONS=" -v " OPTIONS=" -v "
SHOW="n" SHOW="no"
OFORMAT="P_%04d.pnm"
# ------------------------------------ # ------------------------------------
# overide parameters from $PWD # overide parameters from $PWD
@@ -34,7 +35,7 @@ if [ 1 -eq $# ]
then then
outfile="$1" outfile="$1"
else else
outfile=$( printf "P_%04d.pnm" $numero ) outfile=$( printf ${OFORMAT} $numero )
fi fi
# ------------------------------------ # ------------------------------------