Given a script generating 100 .zip files, of which some are empty. (Even if there is nothing to zip, my script generate 100 .zip files).
Given the command :
unzip *.zip
I get an error on empty files :
unzip: cannot find zipfile directory in one of ./data/Archive_03.zip or
./data/Archive_03.zip.zip, and cannot find ./data/Archive_03.zip.ZIP, period.
How can I bypass these fake .zip files and silent this unzip
error ?