- or download this
/tmp>cat shebang.pl
#!/no/such/perl -w
...
-bash: ./shebang.pl: /no/such/perl: bad interpreter: No such file or d
+irectory
/tmp>
- or download this
/tmp>cat shebang.pl
#!/etc/passwd
...
-bash: ./shebang.pl: /etc/passwd: bad interpreter: Permission denied
/tmp>
- or download this
/tmp>cat shebang.pl
...
./shebang.pl: line 8: print: command not found
/tmp>
- or download this
/tmp>echo 'pstree -Aal' >> shebang.pl
...
.
.
.
- or download this
/tmp>perl -e '$_=<STDIN>;print ord $_' < shebang.pl
10
/tmp>