in reply to Cron to run a Perl script

Had similar problem before, this will run every first Monday of every month:

0 12 1-7 * * [ "$(date '+\%a')" = "Mon" ] && /script/script.pl

I hope it helps!