Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as text by ( 18 years ago )
#!/usr/bin/perl -appl
#-lan
use strict;
use warnings;
my $hostfile = "./hosts.cfg";
open(FH, $hostfile) or die( 'Cannot open hostfile' );
while( <FH> ) {
print $_[1];
}
close( FH );
Revise this Paste