Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
find . -iname '*.rar' -execdir unar {} \; -exec rm {} \;
仅当 unar 返回成功的返回码时,如何修改上面的命令才能删除存档?
你不需要;-execdir已经像普通谓词一样起作用,成功或失败取决于执行命令的结果。
-execdir