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 : #!/bin/bash MYTZ=`date | awk '{print $5}'` TOM=$(TZ=$MYTZ-24 date +%d) #echo $TOM if [ $TOM == 01 Read More ...
