in reply to Can't open perl script: Permission denied

For anyone new to Perl on UNIX/Linux/BSD (or people just new to one of those platforms) the #!usr/bin/perl line is missing a leading slash. It should be:
#!/usr/bin/perl
It's not relevant to the OP but I thought I would mention it lest it confuse someone else later on.