BulletProofPerl has asked for the wisdom of the Perl Monks concerning the following question:
Version2print "Content-type: text/html\n\n"; open (netsh, "C:/WINDOWS/system32/netsh.exe dhcp server scope <scopeip +removed> dump|"); foreach my $line (<netsh>) { print $line; } close netsh;
print "Content-type: text/html\n\n"; print `netsh dhcp server scope <scopeipremoved> dump`;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Weird CGI Behavior
by BrowserUk (Patriarch) on Mar 31, 2009 at 01:19 UTC |