Zero terminated
Syntax
Section titled “Syntax”splitby -z [selection...]What it does
Section titled “What it does”Reads and writes NUL-delimited records. This is handy for find -print0 or xargs -0 style pipelines.
Examples
Section titled “Examples”printf "first,second\0third,fourth\0" | splitby -z -d "," 1# first# third