refactor(bash): rename mkcdir to mkd (#52)

Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/52
This commit is contained in:
Victor Westerlund 2025-10-01 16:20:11 +02:00
parent a6feceec73
commit e0c4151ed9

View file

@ -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
}
# +-----+