Linux命令xargs的使用

ls | xargs cat
ls | xargs -I {} cat {}  大写I,指定参数的替换符号为{} 自定义

原文地址:https://www.cnblogs.com/frisk/p/11601891.html