On Wed, 28 Jul 2010 12:18:56 Tim Penhey wrote:
> function lp-failing
> {
> zcat $1 | subunit-filter --no-passthrough --no-skip | subunit-ls | uniq
> }
Actually, a sort before uniq is needed:
function lp-failing
{
zcat $1 | subunit-filter --no-passthrough --no-skip | subunit-ls | sort |
uniq
}
_______________________________________________
Mailing list: https://launchpad.net/~launchpad-dev
Post to : [email protected]
Unsubscribe : https://launchpad.net/~launchpad-dev
More help : https://help.launchpad.net/ListHelp