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
- sandip's blog
- Login or register to post comments
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