scripts/functions_korn/mkcd

7 lines
102 B
Text

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