Split input and pipe each part to a command separately.
Split input and feed it into the given utility
xpipe$ xpipe -d '\n' cat file.txt -- echo$ xpipe -d ',' -- curl https://example.com$ xpipe -d ' ' -- sh -c 'echo processing: $1' _$ echo 'file1 file2 file3' | xpipe -d ' ' -- wc -l$ xpipe -d ':' -- grep -r -l {} .