aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/paz.bash
blob: 77299dadd8bd2d7b8fd2e96ba9d9b5eea988331b (plain) (blame)
1
2
3
4
5
6
# Print arguments, null-delimited; you will probably want to write this into a
# file or as part of a pipeline. Compare pa().
paz() {
    (($#)) || return 0
    printf '%s\0' "$@"
}