正则表达式 – sed -E和sed -e之间有什么区别?

前端之家收集整理的这篇文章主要介绍了正则表达式 – sed -E和sed -e之间有什么区别?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在处理一些旧的代码,我发现我曾经使用过
sed -E 's/findText/replaceWith/g' #findText would contain a regex

但我现在试试

sed -e 's/findText/replaceWith/g'

它似乎做同样的事情,还是做呢?
我记得有一个理由我做了它,但我不记得和做“男人sed”没有帮助,因为他们没有任何东西 – 只有 – 这不太有意义的以太.

-e,--expression=script
  Append the editing commands in script to the end of 
  the editing command script. script may contain more 
  than one newline separated command.

我以为 – 这意味着它会匹配正则表达式…

GNU sed version 4.2.1
从源代码来看,-E是与BSD sed兼容的一种未记录的选项.
/* Undocumented,for compatibility with BSD sed.  */
case 'E':
case 'r':
  if (extended_regexp_flags)
    usage(4);
  extended_regexp_flags = REG_EXTENDED;
  break;

而从manual起,BSD中的-E用于支持扩展正则表达式.

原文链接:https://www.f2er.com/regex/357205.html

猜你在找的正则表达式相关文章