Help for this page

Select Code to Download


  1. or download this
    $ /usr/bin/perl -e 'print "Hello, world!\n"'
    Hello, world!
    
    $ /usr/not_bin/perl -e 'print "Hello, world!\n"'
    -bash: /usr/not_bin/perl: No such file or directory
    
  2. or download this
    $ cat crap.pl
    #!/usr/not_bin/perl
    ...
    
    $ ./crap.pl
    -bash: ./crap.pl: /usr/not_bin/perl: bad interpreter: No such file or 
    +directory