https://zhuanlan.zhihu.com/p/110650001

    https://blog.csdn.net/weixin_42191996/article/details/90676076

    1. # vim 命令行模式
    2. # 把1-5行写入文件
    3. :1,5 w ~/163.txt
    4. # 把12-17行追加到文件
    5. :12,17 w>> ~/163.txt
    6. :r !date #读取系统时间并插入到当前行的下一行。
    7. :62,72 !sort #将62行到72行的内容进行排序
    8. # 执行shell
    9. :!ls -l
    1. #匹配行前加
    2. sed -i '/allow 361way.com/i\allow www.361way.com' the.conf.file
    3. #匹配行前后
    4. sed -i '/allow 361way.com/a\allow www.361way.com' the.conf.file
    1. sed -i 'N;4a\ddpdf' a.txt
    2. sed -i 'N;4i\eepdf' a.txt
    3. # 这里指定的行号是第四行 。