I\'m looking for a way to make Perl kill all firefox.exe processes on Win32, and not give an error if no process exists. I\'m currently using:
system(\'taskk
If you want to suppress all output including errors, try this:
system('taskkill /F /IM firefox.exe >nul 2>&1');
You can see more information about command redirection and pipes here:
http://ss64.com/nt/syntax-redirection.html