Can xargs' default delimiter be changed?
问题 I want the following behavior without having to explicitly specify it with options: xargs -d '\n' Unlike with most commands, you can't just use an alias because pipes don't recognize aliases (as a side-note, why is it designed this way?). I also tried creating my own ~/bin/xargs script but I think it's not as simple as reading "$@" as a string inside the script. Any suggestions how to make the delimiter a newline by default? I don't want to get a bunch of errors when I have a space in the