自学linux指令分析-xargs

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自学linux指令分析-xargs相关的知识,希望对你有一定的参考价值。

自学linux指令分析-xargs

 

1·命令格式

指令|xargs 指令

 

2·命令参数

 

 

 

3、命令功能

管道功能,将前面的指令传给后面逐行执行

 

4、命令范列

[[email protected] tmp]# find / -type f -name "test.txt"   
/etc/test.txt
/mnt/test.txt
/tmp/test.txt
[[email protected] tmp]# find / -type f -name "test.txt"|xargs cat 
test
liyao
oldboy

 技术分享

 








以上是关于自学linux指令分析-xargs的主要内容,如果未能解决你的问题,请参考以下文章

自学linux指令分析-seq

自学linux指令分析-sed

自学linux指令分析-alias

自学linux指令分析-head

自学linux指令分析-vi

自学linux指令分析-ls