summaryrefslogtreecommitdiff
path: root/sh
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2023-02-26 15:14:34 -0600
committerzachir <zachir@librem.one>2023-02-26 15:14:34 -0600
commit11d2885f058d49007b8496012fb6581da42708f1 (patch)
tree2c90ea49fe18671f38b3fad373f92375f5416495 /sh
parent11c3febb8ab8b488f84cfec7e55cdc7326ecad00 (diff)
make sh mkdir -p instead of just mkdir
Diffstat (limited to 'sh')
-rw-r--r--sh/functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/functions b/sh/functions
index 69b26c3..6ed5792 100644
--- a/sh/functions
+++ b/sh/functions
@@ -14,7 +14,7 @@ mpt () {
}
mkcd () {
- mkdir $@ && cd $1
+ mkdir -p $@ && cd $1
}
ntharg () {