root@scarface:~# cat test.pl #!/usr/bin/perl -w use strict ; my $web = "perlmonks rocks !" ; print "$web\n" ; root@scarface:~# perlcc test.pl -o test root@scarface:~# ./test perlmonks rocks !