我试过了:

find . -name "*.rar" -exec unrar x -o {} \;

输出:



我不能这样提醒我;不幸的是双手都占据了。以为-o标志可以做到,但是没有。

最佳答案

您需要指定-o+来启用自动覆盖:

find . -name "*.rar" -exec unrar x -o+ {} \;

来自unrar的用法:
o[+|-]        Set the overwrite mode

09-26 14:19