in reply to Perl & cron job environmental variables

As Fletch mentioned, you can create a csh wrapper script around your Perl script:
#!/bin/csh /home/username/bin/perlprintenv.pl
then use a crontab entry like this:
* * * * * /home/username/bin/wrapper.csh
This worked for me on my solaris machine.