First day of the month



examples/linux/first_day.sh
#!/bin/bash

if [ $(date +%d) = "01" ]
then
  echo "hit"
else
  echo "nope"
fi