I need to extract more than 2k files from 1000 folders..the problem is, each folder has a zipped folder inside and inside this folder, there is another folder called "fileholder" which contains some temp.processed filetype that I need to get. Is there any way to search for all these files and copy them to another location? or do I have to extract all of the zip files?
I have ran:
find -type f -iname \*.PROCESSED
but that does not search inside the zipped files. Can someone point me to the right direction?