in reply to Re: improov mein k0den
in thread improov mein k0den

Just kindof a side note, as I'm sure it's common knowledge. The following won't run on modern linuxes.

#!perl use strict; print "hiya\n";

It's considered a security problem to have a non-absolute path in a she-bang.

The usual way around it is #!/usr/bin/env perl.

-Paul