Linux
如何將文件內容作為命令的輸出?
我有一個包含路徑列表的文件現在我想在每一行範例上執行命令:-
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