aboutsummaryrefslogtreecommitdiff
path: root/sh
diff options
context:
space:
mode:
Diffstat (limited to 'sh')
-rw-r--r--sh/shrc.d/mkcd.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/shrc.d/mkcd.sh b/sh/shrc.d/mkcd.sh
index 6342d4a6..c59a8c54 100644
--- a/sh/shrc.d/mkcd.sh
+++ b/sh/shrc.d/mkcd.sh
@@ -1,4 +1,4 @@
# Create a directory and change into it
mkcd() {
- mkdir -p -- "$1" && builtin cd -- "$1"
+ mkdir -p -- "$1" && command cd -- "$1"
}