| >Your "shell" solution isn't really a shell solution, it's an awk solution. >It's really valuable to know awk, but it's a bit misleading to claim that "it's shell". It's more than a bit misleading to accuse someone of being misleading, without checking your facts first. Maybe you spoke too soon, without reading the full post, as I find people sometimes (often?) do (not just in reply to my comments, but to those of others too), not just on HN, but on many forums. Read both the header comment and the last line of the script you called "an awk solution": Header comment: # bentley_knuth.sh Of course, the filename extension does not make it a shell solution instead of an awk solution, but I used .sh because I knew what I was doing [1]. See next point. Last line of that script: ' < $2 | sort -nr +1 | sed $1q
So the script uses all of awk, sort, sed and shell - which you seem to have missed, maybe because you only skimmed the first some lines before replying here. That makes it a shell script in my book, plus see below.The $2 and the $1 - in the $1q bit - are shell command line parameters, because this code is invoked from the shell as a script, with arguments passed. Also see the pipe symbols (|). All these are part of shell syntax, not awk syntax (although awk has $1, $2, etc. too, they have a different, though related meaning - in fact, I use a $i in my awk script within this shell script too). The whole script is a pipeline, that pipes the awk script's output to sort and sort's to sed. I don't know if you are a shell/awk newbie or not, but regardless, you missed those points above, like I said, probably due to haste. [1] Check out this recent article by me in Linux Pro Magazine: http://www.linux-magazine.com/Issues/2018/217/Exploring-proc for a bit of shell quoting magic along with some use of awk. And this post: UNIX one-liner to kill a hanging Firefox process: https://jugad2.blogspot.com/2008/09/unix-one-liner-to-kill-h... and also the interesting comments on that post, from which I learned some things. After having worked for years on Unix platforms (as both a dev and system engineer), from even before Linux was created, I think I know the difference between shell and awk (and a bit more, although still do not claim to know everything, or even close). On a more positive note, I'll use this as an opportunity to put in a plug for my Python and Linux training offerings :) Course outlines and a couple of testimonials here: https://jugad2.blogspot.com/p/training.html |
Quoting from your post:
So you invoke awk, and then run the output of awk through sort and sed.You're doing all the word counting in awk.
Yes, you're invoking awk from a shell script, but that's really not the same thing as "using shell." McIlroy’s solution is genuinely shell:
"awk" is generally accepted as a full programming language, whereas "tr", "sort", "uniq", and "sed" are command line utilities. I don't think "awk" classes as a command line utility, so I don't class your solution as "shell".Perhaps you don't agree, perhaps you think "awk" is a command line utility. If so, then we'll agree to disagree.