Login  Register

Re: reset number after each month

Posted by Roshan on May 22, 2017; 9:55am
URL: http://erman-arslan-s-oracle-forum.124.s1.nabble.com/reset-number-after-each-month-tp2706p2722.html

If I compare the current date to a previous date(d2), if they are not equal, I overwrite the date d2 with actual date(d) and reset text file(value) to -01. Else proceed as usual
 
d=$(date "+%d.%m.%Y")
d2=21.05.2017
read n < fileread.txt
n=$(printf "%02d" "$((${n} + 1))")
f="outputSMS_${d}_${n}.unl"
 
if [${d} -ge ${d2}]
then
${d2}=${d}
echo -01 > fileread.txt
read n < fileread.txt
n=$(printf "%02d" "$((${n} + 1))")
f="outputSMS_${d}_${n}.unl"
for file in /archicom/data/dw*mob*.dat
do
cat $file >>/archicom/data/ctlfiles/$f
done
 
else
echo $n > fileroshan.txt
for file in /archicom/data/dw*mob*.dat
do
cat $file >>/archicom/data/ctlfiles/$f
done
fi
 
I am getting
.sh: line 7: [22.05.2017: command not found
 
Thanks