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++ 项目运行 xcodebuild 的简单脚本。然而,它为每个编译的文件打印出大量的输出,10-20 行,这使得它无法轻松阅读。理想情况下,我只想查看已编译文件的列表,每行一个。
我不是一个 nix 人,但似乎 nix 命令行几乎可以做任何事情......有没有一种巧妙的方法来做到这一点?xcodebuild 本身似乎没有任何详细程度的控制选项。
这个问题可能会有所帮助:
如何过滤 xcodebuild 命令行输出?
基本上,您可以通过管道输出并使用 grep 搜索您需要显示的内容。