bash – 忽略xargs的空结果

前端之家收集整理的这篇文章主要介绍了bash – 忽略xargs的空结果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
考虑这个命令:
ls /mydir/*.txt | xargs chown root
@H_301_3@目的是将mydir中所有文本文件的所有者更改为root

@H_301_3@问题是,如果在mydir中没有.txt文件,那么xargs会有一个错误,说没有指定路径。这是一个无害的示例,因为正在抛出错误,但在某些情况下,像在我需要在这里使用的脚本,假定一个空白路径是当前目录。所以,如果我从/ home / tom /运行那个命令,然后如果没有ls /mydir/*.txt的结果,并且/ home / tom /下的所有文件都已被更改为root。

@H_301_3@那么如何让xargs忽略一个空结果?

对于GNU xargs,可以使用-r或–no-run-if-empty选项:
@H_301_3@--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.

原文链接:https://www.f2er.com/bash/392355.html

猜你在找的Bash相关文章