Testing zipped archives

If you've got a lot of zip files and need to test it, here's a one liner that can be used to quickly validate the archives:

for x in `ls` ; do zip -T $x ; done | tee /tmp/archive_test.log

Comment