首页 > TAG信息列表 > liker

grep 查找日志

grep常用选项:  -E :开启扩展(Extend)的正则表达式。 如:grep  -E '2021-09-23 17:18:54.[000-040]' application.log   -i :忽略大小写(ignore case)。   -v :反过来(invert),只打印没有匹配的,而匹配的反而不打印。   -n :显示行号   -w :被匹配的文本只能是单词,而不能是单词中的某

linux系统中在指定行后添加空行

1、在所有行后添加空行 [root@centos79 test]# cat a.txt a g r e i x k like a f g liker s t 2 a b d s i [root@centos79 test]# awk '{print $0 "\n"}' a.txt a g r e i x k like a f g liker s t 2 a b d s i   2、 [root@centos79 test]# cat a.txt a

linux系统中如何将多个连续的空行合并为一个空行

1、测试数据如下 [root@centos79 test]# ls a.txt [root@centos79 test]# cat a.txt a g r e i x k like a f g liker [root@centos79 test]# cat -A a.txt a g r e$ $ $ $ $ i x k like$ a f g liker$   2、将多个空行合并为一个空行 [root@centos79 test]# ls a.txt [ro

linux系统中如何删除空行

linux系统中如何删除空行。 1、测试数据 a.txt [root@centos79 test]# ls a.txt [root@centos79 test]# cat a.txt a g r e i x k like a f g liker [root@centos79 test]# cat -A a.txt a g r e$ $ ## 空行什么也没有 i x k like$ a f g liker$ [root@centos79