的參數Linux命令輸出我想傳遞一個命令的元件的輸出列表作爲另一命令的參數。我已經發現了一些其他的網頁:作爲另一個命令
- 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
感謝
只需將{}的順序更改爲/ home/myuser/myFile之後的第二個位置,它就可以工作。謝謝。 –
@LuisAndrésGarcía啊,我可能誤解了你 - 你想複製一個文件'/ home/myuser/myFile'來覆蓋cwd中'find'找到的任何'myFile'? –
你是對的! :)另一個例子,列出任何找到的文件的屬性是:find -exec ls -l {}';' –