scripts/functions_korn/mkcd

7 lines
100 B
Plaintext

# Crear un directorio y cambiar a él
function mkcd {
mkdir -p -- "$1" || return
cd -P -- "$1"
}