shell命令:sed笔记
程序员文章站
2024-03-22 09:37:22
...
shell中有一个非常强大的支持regex的命令 sed。
使用s/regexp/replacement/flag命令可以regex来查找字符串然后输出
sed -E -n “s/regexp/replacement/flag”
如:
其中([^"]+)为第一个匹配开始字符不是"的group。
p为打印到终端
\1为第一个匹配的字符
使用s/regexp/replacement/flag命令可以regex来查找字符串然后输出
sed -E -n “s/regexp/replacement/flag”
如:
file: sedtest
"tra":"哈"
sed -E -n 's/"tra":"([^"]+)".*/\1/p' sedtest;
output: 哈
其中([^"]+)为第一个匹配开始字符不是"的group。
p为打印到终端
\1为第一个匹配的字符
上一篇: Linux下的性能监控
推荐阅读
-
shell命令:sed命令
-
shell命令之-SED
-
Linux入门之shell命令详解(sed命令)
-
shell命令:sed笔记
-
shell脚本之sed详解 (sed命令 , sed -e , sed s/ new / old / ... )
-
shell命令之sed的应用
-
计算机网络学习笔记1-网络命令详解ping、arp、ipconfig、tracert、route详解
-
Win10 mongoDB安装成功后启动mongo命令出现[email protected]/mongo/shell/mongo.js:341:1错误
-
Shell笔记 博客分类: Linux bashpinggrep
-
Linux学习笔记(八)网络命令 博客分类: Linux ifconfignetstat