in reply to Separate duplicate and unique records
Of course, there's no need to write a whole program, compute expensive hashes and us gobs of memory for things that you can do with a nice, easy to remember one-liner :)
perl -ne"print{$*ne$_&&$*ne$@?STDOUT:STDERR}$*if$*;($@,$*)=($*,$_);END +{print{$*ne$_&&$*ne$@?STDOUT:STDERR}$*}" in 1>uniq 2>dups
Caveat: Usually OS quoting rule changes.
|
|---|