blob: def70f8d019f46b7d74c3137364c993c7f895265 (
plain) (
blame)
1
2
3
4
5
6
7
|
# 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
}
|