scripts/functions_korn/mkcd

8 lines
102 B
Plaintext
Raw Normal View History

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