I have to setup cron job every last month, so I should create simple script to determine if today is the last day in the month. I modified a lil bit from here : ?Download lastmonth.sh1 2 3 4 5 6 7 8 9 10 11 12 13 #!/bin/bash MYTZ=`date | awk '{print $5}'` TOM=$(TZ=$MYTZ-24 date +%d) #echo $TOM if [ $TOM == 01 ] then echo "Last [...]






