in reply to Re: How to hide system(); output.
in thread How to hide system(); output.

Maybe the default "cmd.exe" (or whatever gets used on windows to run commands via the system() call) provides some equivalent sort of idiom, if you know how to look that up...

The equivalent on Windows (at least my cmd.exe) would be:

$command = "ipconfig >nul 2>1";

Replies are listed 'Best First'.
Re^3: How to hide system(); output.
by bcens (Novice) on Jan 30, 2010 at 02:11 UTC
    Each suggestion worked equally. Thank you both for the fast help.