aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/pa.bash
blob: 3a7b8398f1182541f19f359cc60d3a353d7b4e52 (plain) (blame)
1
2
3
4
5
6
7
# Print arguments, one per line. Compare pan().
pa() {
    if (($#)) ; then
        printf '%s\n' "$@"
    fi
}