Sort : the -u (unique) and  -n (numeric) options seem to clash, removing too 
many lines.


[EMAIL PROTECTED] data]# cat /tmp/new_spammers
64.202.165.132
64.202.165.131
64.202.165.133


[EMAIL PROTECTED] data]# sort -u < /tmp/new_spammers
64.202.165.131
64.202.165.132
64.202.165.133

[
[EMAIL PROTECTED] data]# sort -n < /tmp/new_spammers
64.202.165.131
64.202.165.132
64.202.165.133


[EMAIL PROTECTED] data]# sort -u -n < /tmp/new_spammers
64.202.165.132





Workaround: run sort twice, once with each parameter.


[EMAIL PROTECTED] data]# sort -u < /tmp/new_spammers | sort -n
64.202.165.131
64.202.165.132
64.202.165.133




Regards,

--
Will Smith
Web   : www.willsmith.org
Email : www.willsmith.org/contactme.php







_______________________________________________
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to