Jeff King <peff@xxxxxxxx> writes: >> + oIFS="$IFS" IFS="$IFS:$(printf '\015')" > > There's no ":" separator in IFS, so here you're treating colon as > end-of-line. I think you just want: > > IFS="$IFS$(printf '\015')" Yup. Thanks for spotting ;-)
Jeff King <peff@xxxxxxxx> writes: >> + oIFS="$IFS" IFS="$IFS:$(printf '\015')" > > There's no ":" separator in IFS, so here you're treating colon as > end-of-line. I think you just want: > > IFS="$IFS$(printf '\015')" Yup. Thanks for spotting ;-)