我想将命令元素的输出列表作为另一个命令的参数传递.我找到了一些其他页面:
> How to display the output of a Linux command on stdout and also pipe it to another command?
> Use output of bash command (with pipe) as a parameter for another command
但它们似乎更复杂.
我只想将一个文件复制到调用Linux find命令的每个结果中.
这里有什么问题?:
find . -name myFile 2>&1 | cp /home/myuser/myFile $1
谢谢