#!/bin/bash
MYTZ=`date | awk '{print $5}'`
TOM=$(TZ=$MYTZ-24 date +%d)
if [ $TOM == 1 ]
then
echo "Last Day of the month!"
# Enter your monthly code here
fi
This will allow you to create a script that executes on a monthly basis.


Sign In
Create Account

Guest_Jordan_*
Back to top










