aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/which.sh
blob: 528e5048647bcb2f3931473e33fc3fa974fc0a73 (plain) (blame)
1
2
3
4
5
6
# Try to stop me using the non-standard `which`:
# <http://mywiki.wooledge.org/BadUtils#which>
which() {
    printf >&2 'Whichcraft detected! Did you mean: command -v %s\n' "$*"
    return 2
}