Linux

如何將文件內容作為命令的輸出?

  • September 22, 2010

我有一個包含路徑列表的文件現在我想在每一行範例上執行命令:-

file name : rawabdeh .......
command : command

文件包含:-

path/no/1/
path/no/2/
path/no/3/

我想做以下事情:

command path/no/1/
command path/no/2/
command path/no/3/

根據需要替換輸入文件、命令和輸出文件

cat input-file | sed 's/^/command /' >output-file

這應該適合你:

xargs -a "$filename" -n 1 command

引用自:https://serverfault.com/questions/183184