open(FWS,"firewalls.txt") || die "Unable to load firewall list: $!"; while () { chomp; print $_; open(CMDS,"commands.txt") || die "Unable to load commands list: $!"; while () { chomp; print $_; } close CMDS; } close FWS;