blob: 999072984d2ed090c7e1cc926f87a841ec08665b (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# Print arguments, null-delimited; you will probably want to write this into a
# file or as part of a pipeline. Compare pa().
paz() {
if (($#)) ; then
printf '%s\0' "$@"
fi
}
|