Почему
$ echo "a b c d e" | xargs -d' ' --interactive echo
$ echo "a b c d e" | xargs -d\ --interactive echo
echo a b c d e
?...y
a b c d e
echo a ?...y
a
echo b ?...y
b
echo c ?...y
c
echo d ?...y
d
echo e ?...y
e
Почему
$ echo "a b c d e" | xargs -d' ' --interactive echo
$ echo "a b c d e" | xargs -d\ --interactive echo
echo a b c d e
?...y
a b c d e
echo a ?...y
a
echo b ?...y
b
echo c ?...y
c
echo d ?...y
d
echo e ?...y
e