Help for this page

Select Code to Download


  1. or download this
    #!/bin/sh
    eval 'PATH=/usr/local/bin:$PATH \
    ...
    #!perl
    
    print "this is $^X, version $]\n";
    
  2. or download this
      /path/to/some/other/perl script.pl
    
  3. or download this
      perl script.pl
    
  4. or download this
    $ ./script.pl
    this is /usr/local/bin/perl, version 5.012002
    
  5. or download this
    $ /usr/bin/perl -v
    
    ...
    
    $ /usr/bin/perl script.pl
    this is /usr/local/bin/perl, version 5.012002
    
  6. or download this
    >perl script.pl
    Can't exec /bin/sh at script.pl line 1.
    
  7. or download this
      perl -x script.pl