1.定位到第一行
命令模式:输入:1
1.定位到最后一行
命令模式:输入:$
2.清空文件内容
(1)使用vim,输入%d,保存退出即可
(2)使用cat:cat /dev/null > file_name
(3)使用echo:echo "" > file_name