Questions tagged «xargs»


4
“ xargs grep”有什么作用?
我知道该grep命令,并且正在学习的功能xargs,因此我通读了此页面,其中提供了一些有关如何使用xargs命令的。 我对最后一个示例(示例10)感到困惑。它说:“ xargs命令执行grep命令以查找包含字符串'stdlib.h'的所有文件(在find命令提供的文件中)” $ find . -name '*.c' | xargs grep 'stdlib.h' ./tgsthreads.c:#include ./valgrind.c:#include ./direntry.c:#include ./xvirus.c:#include ./temp.c:#include ... ... ... 但是,与简单使用有什么区别 $ find . -name '*.c' | grep 'stdlib.h' ? 显然,我仍在为xargs所做的事情而苦苦挣扎,因此我们将不胜感激!

1
“ xargs”和命令替换之间的区别?
在许多情况下,我使用命令替换代替xargs。例如rm $(ls)与ls | xargs rm 它们之间到底有什么区别? 我认为区别之一是命令替换在子shell中xargs运行,而在当前shell中运行,但是我不确定。 请列出差异。
14 bash  xargs 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.