On Mon, Jul 28, 2025 at 8:27 PM Eric Sunshine <sunshine@xxxxxxxxxxxxxx> wrote: > Taking the above into consideration, the recommendation for Lucas > would, therefore, be: > > printf "%s\0" $expected_value >expected && Of course, I accidentally forgot the quotes around the variable expansion. I should have said: printf "%s\0" "$expected_value" >expected &&