From mboxrd@z Thu Jan 1 00:00:00 1970 To: 9fans@9fans.net User-Agent: meillo's mail handler (mmh) Date: Fri, 7 Jun 2013 15:02:06 +0200 From: markus schnalke Message-ID: <1UkwIw-2xe-00@marmaro.de> Subject: [9fans] Duff's rc paper: Why awk? Topicbox-Message-UUID: 646b9d7a-ead8-11e9-9d60-3106f5b1d025 Hoi, I've read [0], which is enlightening btw, but there is one thing, in Section 27, which I don't understand: Why is awk(1) used there? fn read{ $1=`{awk '{print;exit}'} } [0] http://static.tobold.org/rc/rc-duff.html I rather would have used sed(1), which is less distracting in this case: fn read{ $1=`{sed q} } This use of awk is unexpected to me, it draws my attention on it, thus I'm searching for the strange hidden detail that might be emphasized. (Such as the use of `if not' instead of `else'.) But I can't find it. Maybe there is no such hidden detail. Maybe there is no real reason behind the use of awk here. I'm not really sure ... meillo