- or download this
$ cat > fred.pl
#!/usr/bin/not_perl
print "Hello, world!\n";
- or download this
$ ls -l /usr/bin/not_perl
ls: /usr/bin/not_perl: No such file or directory
- or download this
$ chmod +x fred.pl
- or download this
$ fred.pl
-bash: ./fred.pl: /usr/bin/not_perl: bad interpreter: No such file or
+directory
- or download this
$ perl fred.pl
Hello, world!