8
如果找不到匹配的文件,我可以使`find`返回非0吗?
即使/tmp没有名为的文件something,使用搜索find也会返回0: $ find /tmp -name something $ echo $? 0 什么都find找不到时如何获得非零退出状态?
46
find