shell
to__to
这个作者很懒,什么都没留下…
展开
-
grep 匹配行中的一部分 分析 字符串中 -l 之类的flag标志
-o 匹配行中的一部分 grep -Eoi '\-l[[:blank:]]*[[:graph:]]*\b' | grep '\-l'原创 2017-12-12 11:12:20 · 2227 阅读 · 0 评论 -
sed 支持扩展正则表达式及忽略大小写
其中 -r参数为支持扩展正则表达式,尾部的/i为忽略大小写sed -ri "s/\"Level\".* \"(debug|info|warn)\"/\"Level\": \"Info\"/i" jsoncat jsonsed -ri "s/\"Level\".* \"(debug|info|warn)\"/\"Level\": \"debug\"/i" jsoncat js原创 2017-12-16 17:00:32 · 9696 阅读 · 0 评论