Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/usr/bin/ksh
set -A arr $(cal)
days_in_month=${arr[$((${#arr[*]}-1))]}
day_of_month=$(date +%d)
if [[ $days_in_month -eq $day_of_month ]]
then
echo run the script
else
echo not the last day
exit
fi