I accidentaly ran a find and mv command as per below to move some files with specific extensions to a directory. Unfortunately it was early and I was tired and I didn't put and slash on the end and all the .ext files are gone and I am left with a file called 'file' with no extension.
find /folder -iname "*.zip" -exec mv {} /home/zip \;
Question is : How can I reverse or extract my .zip files from this 'file'
I have tried to open with archiver, cat, tail, head and it's just abinary output and archiver can't extract
Note: I am on a Imac
exec, no operator for the"*.zip". Well actually it would see"*.zip"as a directory to search. But that probably didn't exist.echofirst and review what will happen.