I have literally thousands of archives containing Amiga adf files that I've downloaded and want to unpack them all.
Can someone please tell me the command line i need to use in terminal in order to extract multiple archives (mostly zips but some rars and i think gzips maybe) that are in multiple sub folders please?
I want to make sure all files including hidden and system files are extracted (i read somewhere that unzip can't process system files or hidden files or something like that - is that correct?).
I'd like the extracted files to be placed into folders (along side the archive they have come from) named after the archives (they don't necessarily get named after the archives name when i double click them).
I also want the archives removed to the trash once they are successfully unpacked.
I did find this command but it needs improving:
Cd to root of folders then
find ./ -name *.zip -exec unzip {} \;