使用'grep'搜索没有-P的标签

ano*_*non 10 regex grep

grep -P以前成功使用过,直到我得到一台机器,其中grep不是用Perl正则表达式支持编译的.现在我无法匹配标签: \t字符,

grep -G '\t' matches a literal 't'
grep -E '\t' matches a literal 't'
Run Code Online (Sandbox Code Playgroud)

我如何匹配标签?