Answers:
使用标准grep
语法:
grep '[>|]'
要么
grep -e '>' -e '|'
要么
grep '>
|'
要么
grep -E '>|\|'
正确的方法是使用POSIX指定的-e标志。例如:
grep -e '>\||' infile
grep -e '>' -e '|' infile
也可以。
-e
由POSIX指定,但在这里没有用。\|
POSIX未指定。
\|
BRE
虽然它与GNU一起使用,但它不是标准运算符,而GNU 在大多数围绕Linux内核构建的操作系统中grep
都可以grep
找到。