Linux Vi 删除全部内容,删除某行到结尾,删除某段内容 的方法

1.open this file

vi fileName


2 transfer to the back of this file

G


3 transfer to the 9th line

9G


4delete all data of this file

:1,.d


删除说明:这是在vi中 ,“.”当前行 ,“1,.”表示从第一行到当前行 ,“d”删除



1,$d 也可以其中 $代表最后一行

你可能感兴趣的:(Linux Vi 删除全部内容,删除某行到结尾,删除某段内容 的方法)