Copy and paste content from one file to another file in vi

后端 未结 18 1473
南方客
南方客 2020-12-04 05:02

I am working with two files, and I need to copy a few lines from one file and paste into another file. I know how to copy (yy) and paste (p) in the same file. But that doesn

18条回答
  •  既然无缘
    2020-12-04 05:22

    My scenario was I need to copy n number of lines in middle, n unknown, from file 1 to file 2.

    :'a,'bw /name/of/output/file.txt
    

提交回复
热议问题