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.
我想像这样 grep 行
12121 \tab something
但是,grep 不识别 \t,stackoverflow 中有人说我们可以使用 -P,但我很难记住,有没有更明显的方法?
这就是你如何 grep 的方式
grep -P '\t' *
或者
grep -P 'A\tB' "File.tsv"
如果实在不想用 -P 可以用 [[:space:]] 表示 grep 中的制表符或空格,希望更清楚。