Whole string
Syntax
Section titled “Syntax”splitby -w [selection...]What it does
Section titled “What it does”Processes the full input as one record, which is useful when your delimiter is a newline or when you want cross-line selections.
Examples
Section titled “Examples”printf "a\nb\nc\n" | splitby -w -d "\n" 2# bGotchas
Section titled “Gotchas”- Because the input is treated as a single record, this mode does not take advantage of multithreading.