On Mo, 2007-02-12 at 17:58 +0100, Detlef Riekenberg wrote: > On Mo, 2007-02-12 at 16:37 +0100, Marcus Meissner wrote: > > Whith your help, what can be done, I found 54 contributors for > 2007 in the changelog . > > $ grep "^2007.*>" ChangeLog | sort -t "<" +1 -u | wc -l > 56 > (Stefan and Francois are twice in the list)
"+1" works with "sort (GNU coreutils) 5.93" here, but is not documented in "man sort" and did not work on newer versions: "sort (GNU coreutils) 6.4" as example: file "+1" not found. "-k 2" works on 5.93 and is documented: $ grep "^2007.*>" ChangeLog | sort -t "<" -k 2 -u | wc -l 56 -- By by ... Detlef
