考虑这个命令:
ls /mydir/*.txt | xargs chown root
目的是将mydir中所有文本文件的所有者更改为root
问题是,如果在mydir中没有.txt文件,那么xargs会有一个错误,说没有指定路径。这是一个无害的示例,因为正在抛出错误,但在某些情况下,像在我需要在这里使用的脚本,假定一个空白路径是当前目录。所以,如果我从/ home / tom /运行那个命令,然后如果没有ls /mydir/*.txt的结果,并且/ home / tom /下的所有文件都已被更改为root。
那么如何让xargs忽略一个空结果?
对于GNU xargs,可以使用-r或–no-run-if-empty选项:
原文链接:https://www.f2er.com/bash/392355.html
--no-run-if-empty
-r
If the standard input does not contain any nonblanks,do not run the command. Normally,the command is run once even if there is no input. This option is a GNU extension.