aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/pan.bash
blob: 97de3917018a527d808da0d52009c9d3d8d05034 (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().
pan() {
    if (($#)) ; then
        printf '%s\0' "$@"
    fi
}