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.
Mac と Unix のマニュアルの相違点をリストするにはどうすればよいですか?
たとえば、次のコマンドの間
uniq guniq
次のことを試してみましたが失敗しました
diff (man uniq) (man guniq)
そうあるべき
diff <(man uniq) <(man guniq)
コメントからsauaの質問に答えるには:
Bash は<(...)名前付きパイプに変わり、diff プログラムはこれをファイルとして認識します。diff が知る限り、2 つのファイルを比較しています。
<(...)
これを試して:
man uniq > uniq.man man guniq > guniq.man diff uniq.man guniq.man