#Cambio de directorio (con mejoras!) ccd(){ if [ $# == 1 ]; then if [ -d $1 ]; then cd $1; else mkdir -p $1 && cd $1; fi; else if [ $# == 0 ]; then cd $HOME; else printf "Too many arguments\n"; fi; fi; }