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.
今天是个好日子!我有一个包含内联 c++ 函数列表的文件。我想对它们进行 c++ 过滤。但并不是列表中的所有功能对我来说都很有趣,所以我使用 awk sript 来获取必要的功能。
那么,问题来了,如何在终端中结合“c++filt”和“awk”命令来分析“c++filt”命令输出的awk脚本?感谢每一个答案
awk ... | c++filt -t
应该做(其中...表示您的 awk 过滤器)
...