比较 Mac 和 Unix 手册?
如何列出 Mac 和 Unix 手册之间的差异?
例如,在以下命令之间
uniq
guniq
我尝试了以下命令但未成功
diff (man uniq) (man guniq)
How can I list differences between Mac's and Unix manuals?
For example, between the following commands
uniq
guniq
I tried the following unsuccessfully
diff (man uniq) (man guniq)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该是
从评论中回答 saua 的问题:
Bash 将
<(...)
转换为命名管道,diff 程序将其视为文件。 据 diff 所知,它正在比较两个文件。That should be
To answer saua's question from the comments:
Bash turns
<(...)
into a named pipe, which the diff program sees as a file. So as far as diff knows, it's comparing two files.尝试这个:
Try this: