Login  Register

reset number after each month

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

Hi Erman,

can you please check the script below

d=$(date "+%d%m%Y")
n=$(printf "%02d" "$((${n:-0} + 1))")
f="outputSMS_$d_$n.unl"
echo "outputSMS_${d}_${n}.unl"

It will display outputSMS_17052017_01.unl

Every time the script runs the value of n will increment

Thanks