2020
12-14
12-14
Shell中使用grep、sed正则提取和替换字符串
Linux中使用grep正则提取字符串echooffice365|grep-P'\d+'-ofind.-name"*.txt"|xargsgrep-P'regex'-o xargs会将find结果作为grep的输入,防止find结果过多无法处理-P参数表明要应用正则表达式-o表示只输出匹配的字符串,这样我们就可以把正则匹配到的结果拿到了。Linux、MacOS中使用sed正则提取字符串MacOS上用正则的话要用e参数取代P参数,也可以用sed命令:sed命令格式:sed's/oldValue/newValue/g'提取...
继续阅读 >