更换线路

更换线路

我有两个文件,即 file1 和 file2。我需要用 file1 的第 10 行替换 file2 的第 16 行

答案1

使用sed(流编辑器):

sed '16 s/.*/'"$(sed -n '10p' file1)"'/' file2

相关内容