I can unzip just fine like this
find /file/location -mtime -1 -print -exec unzip -o {} \;
But I get an error if I try to make it unzip to another location /home/username
:
find /file/location -mtime -1 -print -exec unzip -d /home/username;
What am I doing incorrectly?
find
– steeldriver Mar 23 '18 at 18:58