aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bash/bashrc.d/which.bash4
-rw-r--r--sh/shrc.d/which.sh4
2 files changed, 8 insertions, 0 deletions
diff --git a/bash/bashrc.d/which.bash b/bash/bashrc.d/which.bash
new file mode 100644
index 00000000..2d7084e6
--- /dev/null
+++ b/bash/bashrc.d/which.bash
@@ -0,0 +1,4 @@
+which() {
+ printf >&2 'Whichcraft detected! Did you mean: type -P %s\n' "$*"
+ return 2
+}
diff --git a/sh/shrc.d/which.sh b/sh/shrc.d/which.sh
new file mode 100644
index 00000000..9d8c899a
--- /dev/null
+++ b/sh/shrc.d/which.sh
@@ -0,0 +1,4 @@
+which() {
+ printf >&2 'Whichcraft detected! Did you mean: command -v %s\n' "$*"
+ return 2
+}