2023-02-20 11:35:58 Ugh... Monday. :-) 2023-02-20 11:36:06 gotta love 'em 2023-02-20 11:39:27 So, I've read several Rob Pike documents recently. He seems to have a pretty firm opinion that the "line oriented" nature of standarD Linux tools like grep, awk, and so on is a shortcoming - a limitation. He prefers to regard the input as one long string, and if you want lines you'd get them yourself. What do you guys think? 2023-02-20 11:41:41 more complicated for probably not much gain 2023-02-20 11:42:21 Yeah, I don't just immediately see the benefits either, but I may just be "habituated" to how things are. 2023-02-20 11:42:31 It's not uncommon for lines to be exactly what you want. 2023-02-20 11:56:36 So, if I use taskset to pin a bash script to a particular core, will child processes that it starts also be pinned? 2023-02-20 11:56:49 Or do I have to drill down explicitly with taskset? 2023-02-20 12:34:31 Well, using taskset for the child calls as well proved easy enough. 2023-02-20 12:34:40 Got everything where I want it.