in reply to Re^2: How many man-hours would you estimate you have invested in learning Perl?
in thread How many man-hours would you estimate you have invested in learning Perl?
#!/usr/bin/env perl isn't portable, as not all platforms have env in the same place. You should use this instead:
#!/bin/sh exec perl -x $0 "$@" #!perl # your perl code goes here
|
|---|