scripts/functions_korn/mkcd

7 lines
100 B
Plaintext
Raw Normal View History

2023-05-06 02:24:23 +02:00
# Crear un directorio y cambiar a él
2023-05-25 11:24:33 +02:00
function mkcd {
mkdir -p -- "$1" || return
cd -P -- "$1"
2023-05-06 02:24:23 +02:00
}