in reply to Re: Beginner project suggestions
in thread Beginner project suggestions
open(FWS,"firewalls.txt") || die "Unable to load firewall list: $!"; while (<FWS>) { chomp; print $_; open(CMDS,"commands.txt") || die "Unable to load commands list: +$!"; while (<CMDS>) { chomp; print $_; } close CMDS; } close FWS;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Beginner project suggestions
by Grygonos (Chaplain) on Apr 29, 2005 at 17:40 UTC |