将昨天日期的文件解压缩到“其他”位置不起作用

将昨天日期的文件解压缩到“其他”位置不起作用

我可以像这样解压缩

find /file/location -mtime -1 -print -exec unzip -o {} \;

但如果我尝试将其解压缩到另一个位置,则会出现错误/home/username

find /file/location -mtime -1 -print -exec unzip -d /home/username;

我做错了什么?

答案1

您需要传递 fileName 来解压它,并转义特殊字符;

find /file/location -mtime -1 -type f -exec unzip {} -d /home/username \;

相关内容