On Mon, Nov 23, 2020 at 5:22 PM Emily Shaffer <emilyshaffer@xxxxxxxxxx> wrote: > On Mon, Nov 23, 2020 at 04:05:05PM +0000, Derrick Stolee via GitGitGadget wrote: > > + printf "fixed.test=bogus\n" >expect && > It is jarring to me to see a printf here when everywhere else we use > heredocs. 'git grep' tells me it's not unheard of, but it looks like > those are cases where the whole file doesn't use heredocs. For creating a one-line file, the verbosity of a here-doc may be overkill. At any rate, `echo` would be more idiomatic than `printf`: echo "fixed.test=bogus" >expect && (Though, this alone is likely not worth a re-roll.)