rwx/sh/alias/mkdir.sh
Marc Beninca 020aaa0b9a
All checks were successful
/ job (push) Successful in 1m12s
refactor(history): commit development branch
new development branch from root commit
2025-02-10 21:54:51 +01:00

14 lines
249 B
Bash

# make a directory
md() { a__make_directory "${@}"; }
a__make_directory() {
mkdir \
"${@}"
}
# make a directory after making its parents
mdp() { a__make_directory_parents "${@}"; }
a__make_directory_parents() {
mkdir \
--parents \
"${@}"
}