in reply to Invoke system("unzip") in CGI file,unexpected output

system("unzip test.zip > /dev/null");
or:
my $outp = qx(unzip test.zip);
then test $outp, if required.