Artificial intelligent assistant

How to schedule cron jobs in linux? I have script files. .file I need to run only on the first day of the every month. How can I do this with my cron job? 52 07 * * * bash '/home/linux/tanu/cat.sh'

# * * * * *
# | | | | |
# | | | | day of week 0-7 (0 or 7 is Sun, or use names)
# | | | month 1-12 (or names)
# | | day of month 1-31
# | hour 0-23
# minute 0-59

# runs on every 1st of month at 7:52am
52 7 1 * * bash '/home/linux/tanu/cat.sh'

# runs on all other days at 7:52am
52 7 2-31 * * bash '/home/linux/tanu/cat.sh'


I hope that's correct.

xcX3v84RxoQ-4GxG32940ukFUIEgYdPy e26da99203573e4f0774d98d811642e8