Aug 7, 2002 #1 barryp Programmer Jan 30, 2002 48 GB I have a shell script which uses 'unzip -t file' I then test the result to see if the file is a good ZIP file or not I want to lose the messages output by UNZIP but 'unzip -t file > null' doesn't work Any help welcomed
I have a shell script which uses 'unzip -t file' I then test the result to see if the file is a good ZIP file or not I want to lose the messages output by UNZIP but 'unzip -t file > null' doesn't work Any help welcomed
Aug 7, 2002 #2 jaymzter Vendor Jul 8, 2002 441 US try unzip -t file.zip 2>/dev/null Upvote 0 Downvote