linux 系统sed命令如何提取奇数行、偶数行及整倍数行
1、创建测试数据 [root@linuxprobe test]# seq 30 > a.txt [root@linuxprobe test]# ls a.txt [root@linuxprobe test]# head a...
1、创建测试数据 [root@linuxprobe test]# seq 30 > a.txt [root@linuxprobe test]# ls a.txt [root@linuxprobe test]# head a...
1、创建测试数据 [root@linuxprobe test]# seq 20 > a.txt [root@linuxprobe test]# ls a.txt [root@linuxprobe test]# head a.txt 1...
1、创建测试数据 [root@linuxprobe test3]# cat a.txt e i j s e f y u d s d g 2、小写转换为大写 tr [root@linuxprobe test3]# tr [a-z...
1、创建测试数据 [root@linuxprobe test3]# cat a.txt wrwrt fdgsaf fsads gdfgde fsddd dffgdf sfdef sdfdsg 2、 [root@linuxpro...
1、创建测试数据 [root@linuxprobe test3]# echo {1..300} | xargs -n 15 > a.txt [root@linuxprobe test3]# cat a.txt 1 2 3 4 5 6 ...
1、创建测试数据 [root@linuxprobe test3]# cat a.txt w r t f s 4 6 6 a g g s d g r 4 d e w h s f g h 2、 [root@linuxprobe test3]# ...
shell命令从字符串中提取数字 echo "2020年7月21日" | tr -cd "[0-9]" 这样就可以提取出2020721
awk和sed之前看过,好久不用又忘记了,也没有总结,所以要学习还得再上网找资料,索性自己来总结一下。-print0和xargs之前一直在用,但是模模糊糊,一知半解,今天一并解决。 -print -print是find命令的一个参数,别的命...
一 几个特殊的字符: ^ :只匹配行首 如^a 匹配以a开头的行abc,a2e,a12,aaa,...... example: grep "^a" //列出所有以a开头的行 $ :只匹配行尾。 如^a 匹配以a结尾的行bca,12a,aa...
使用 cat 如果你只想将一组文件放到单个文件中,那么 cat 命令是一个容易的选择。你所要做的就是输入 cat,然后按你希望它们在合并文件中的顺序在命令行中列出这些文件。将命令的输出重定向到要创建的文件。如果指定名称的文件已经存在,那么文...