On 28/11/2025 00:57, Collin Funk wrote:
+print_ver_ tac
I'd also rely on printf
+ tac --separator=$(printf "$1") inp > out && printf '\n' >> out \ + || framework_failure_
Since we're testing tac, I'd explicitly check its return value. Also this looks under quoted, so I'd change to: tac --separator="$(printf -- "$1")" inp > out || fail=1 printf '\n' >> out || framework_failure_ cheers, Padraig
