摘要:
1、创建测试数据 a.txt [root@linuxprobe test]# seq 10 > a.txt [root@linuxprobe test]# ls a.txt [root@linuxprobe test]# cat a.txt 1 2 3 4 5 6 7 8 9 10 2、利用tee命 阅读全文
摘要:
1、利用vim编辑器创建测试文件 [root@linuxprobe test]# cat a.txt e d 4 9 s y k m 2 r t s w d g h e t k r 2、提取特定行 最简单的用法,提取包含特定字符串的行,例如提取包含字符串k的行: [root@linuxprobe t 阅读全文
摘要:
vim 命令删除特定行: 首先 vim filename 进行命令模式: dd: 删除 光标所在的整行; d1G:删除光标所在行到第一行的所有数据; dG: 删除光标到最后一行的所有数据 ; 3dd:删除光标所在行向后的3行;(3可以替换为任意数字) 3D:同3dd,删除光标所在行向后3行(包含光标 阅读全文