This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Comprobar si colima está instalado | |
if ! command -v colima &> /dev/null; then | |
echo "Colima no está instalado. Por favor, instálalo y vuelve a intentar." | |
exit 1 | |
fi | |
# Determinar el archivo de configuración basado en el shell | |
if [[ "$SHELL" == *zsh ]]; then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import string | |
morseAlphabet = { | |
"A": ".-", | |
"B": "-...", | |
"C": "-.-.", | |
"D": "-..", | |
"E": ".", | |
"F": "..-.", |