Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想写一个 egrep 来抓取所有只包含 A 和 B 的行,并且 A 的出现次数可以被 4 整除!
我认为这会做到:
egrep '^((B*A){4})+B*$' filename
(B*A)匹配任意数量的 B 后跟 A。{4}要求此序列出现 4 次。将其分组并附加+允许这些 4-A 组多次出现。然后B*在最后允许一些额外的 B 上线。
(B*A)
{4}
+
B*