Skip empty
Syntax
Section titled “Syntax”splitby --skip-empty [selection...]splitby --no-skip-empty [selection...]Short forms:
splitby -e [selection...]splitby -E [selection...]What it does
Section titled “What it does”When enabled, empty fields are ignored during indexing and counting. This is useful when the delimiter can appear multiple times in a row.
Examples
Section titled “Examples”echo "a,,b" | splitby -d "," -e 2# becho "a,,b" | splitby -d "," -E 2# (empty)