mkdir
This commit is contained in:
parent
537fb83f84
commit
ff37c7602c
1 changed files with 6 additions and 3 deletions
|
@ -1,14 +1,17 @@
|
|||
# mkdir
|
||||
|
||||
# make a directory
|
||||
#| mkdir
|
||||
#= md
|
||||
a__make_directory() {
|
||||
rwx_make_directory() {
|
||||
mkdir \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# make a directory after making its parents
|
||||
#= mdp
|
||||
a__make_directory_parents() {
|
||||
mkdir \
|
||||
rwx_make_directory_parents() {
|
||||
rwx_make_directory \
|
||||
--parents \
|
||||
"${@}"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue