aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/pmd.sh
blob: 03f18b7bf93c82b6a24d718fc306f58cc2134808 (plain) (blame)
1
2
3
4
5
6
7
8
# Print the marked directory
pmd() {
    if ! [ -n "$PMD" ] ; then
        printf >&2 'pmd(): Mark not set\n'
        return 2
    fi
    printf '%s\n' "$PMD"
}