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.
我希望用 -f 为 grep 提供一个模式文件,但在每个模式之前和之后添加一个文字选项卡(来自文件)。由于我正在处理制表符分隔的文件,因此此方法将允许我 grep 精确匹配列。
是的,我必须使用 Grep。awk 和 perl 似乎无法处理我的大型模式文件。
是的,我可以在模式文件中添加选项卡,但是我有很多模式文件,所以这需要很长时间,但如果都失败了,我会这样做。
这对于希望在 tsv 文件中进行精确列匹配的任何人都应该很有用。
我会尝试“即时”添加标签:
grep -f <(sed 's/^/\\t/; s/$/\\t/' patterns) [args...]
让grep解释\t为标签。
grep
\t