Subject:
|
Re: Unix geeks
|
Newsgroups:
|
lugnet.publish
|
Date:
|
Thu, 18 Feb 1999 11:38:36 GMT
|
Viewed:
|
2149 times
|
| |
| |
On Wed, 17 Feb 1999 19:40:12 GMT, lehman@javanet.com (Todd Lehman)
wrote:
> cat /etc/words | awk '{print substr($0,1,3)}' | sort | uniq -c | sort
Does uniq mess up the sorting? I don't see why you have to pipe it
through sort twice otherwise. I mean, Yick. sort is a slow program
anyway, so doing it twice where once would do :)
Jasper
|
|
Message has 3 Replies: | | Re: Unix geeks
|
| (...) sort it once to get the word prefixes in order. uniq -c to get you a count of the prefix occurrences prepended to the prefix after removeing dups, sort it again to put the prefixes in order by number of occurences. If you really were the geek (...) (26 years ago, 18-Feb-99, to lugnet.publish, lugnet.off-topic.fun)
| | | Re: Unix geeks
|
| (...) Well, I looked at it (at least, I looked at qsort... I haven't looked to see if I could speed the io of the sort command). GNU qsort is incredibly coded. It has a list of references, and during my lit searches, I couldn't find any they'd (...) (26 years ago, 18-Feb-99, to lugnet.publish, lugnet.off-topic.fun)
| | | Re: Unix geeks
|
| (...) uniq doesn't mess up sorting, no. uniq -c does, though -- in the sense that it adds an additional field at the front of the line (man uniq). Technically, in this case, the first sort isn't necessary because the words file is already sorted, (...) (26 years ago, 18-Feb-99, to lugnet.publish)
|
Message is in Reply To:
| | Unix geeks
|
| Steve: (...) I think it's a matter of perspective... When someone who is a Unix geek is doing something the hard way, In my experience they're actually doing it the easy way -- it just looks cryptic if you don't speak the lingo. They're often also (...) (26 years ago, 17-Feb-99, to lugnet.publish)
|
58 Messages in This Thread:
- Entire Thread on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
This Message and its Replies on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
|
|
|
|