vote up 1 vote down star
1

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)
flag

2 Answers

vote up 7 vote down check

That should be

diff <(man uniq) <(man guniq)

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.

link|flag
Woah! How does that work? How does diff know which lines come from which command? – Joachim Sauer Mar 7 at 13:16
Oh, some experimentation already showed me: "echo <(man uniq)" is quite revealing ;-) – Joachim Sauer Mar 7 at 13:17
vote up 1 vote down

Try this:

man uniq > uniq.man
man guniq > guniq.man
diff uniq.man guniq.man
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.