mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2025-11-05 01:12:42 +01:00
feat(bash): rename mkcdir to mkd
This commit is contained in:
parent
a6feceec73
commit
42571f29b8
1 changed files with 3 additions and 3 deletions
|
|
@ -117,9 +117,9 @@ cdll () {
|
|||
cd -P -- "$1" && ll
|
||||
}
|
||||
|
||||
# Make a new directory and cd into it
|
||||
mkcdir () {
|
||||
mkdir -p -- "$1" && cd -P -- "$1"
|
||||
# Make a new directory and cd into it, also list contents in case it already exists
|
||||
mkd () {
|
||||
mkdir -p -- "$1" && cd -P -- "$1" && l
|
||||
}
|
||||
|
||||
# +-----+
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue