I've to handle 46 .zip file according to their internal structure.
The first usefull check to branch the elaboration is check if a specific file is presente in the .zip.
Actually i'm unzipping and testing the existence of unzipped file.
But, I ask you, is there a way to check if a file is inside a zip file without extract it entirely, using only bash commands?
unzip -l
lists all files in azip
file. – Doallunzip -Z1 file.zip | grep file
– Electrophilic