Wrong number of total hashes ?
#7
@epixoip
That command(s) do *not* solve the problem that we had: unique lines vs unique hashes! (we need to eliminate the strings before the colon)

BTW, nobody would use an extra pipe between *TWO* commands to count just unique lines if you don't need to, e.g:
$ awk '{i[$0]++}END{print length(i)}' hashes.txt
$ # or many others w/o pipe!


Messages In This Thread
Wrong number of total hashes ? - by Mem5 - 03-29-2013, 01:04 PM
RE: Wrong number of total hashes ? - by philsmd - 03-29-2013, 03:54 PM
RE: Wrong number of total hashes ? - by Mem5 - 03-29-2013, 04:08 PM
RE: Wrong number of total hashes ? - by philsmd - 03-29-2013, 04:15 PM
RE: Wrong number of total hashes ? - by Mem5 - 03-29-2013, 04:53 PM
RE: Wrong number of total hashes ? - by epixoip - 03-29-2013, 09:28 PM
RE: Wrong number of total hashes ? - by philsmd - 03-29-2013, 10:21 PM
RE: Wrong number of total hashes ? - by epixoip - 03-30-2013, 03:30 AM