Decode morse code from stdin.
$ echo ".... . .-.. .-.. ---" | morse; echo
HELLO
The trailing echo
is needed for interactive use in shells in order to print the final newline.
Kees van Voorthuizen
Decode morse code from stdin.
$ echo ".... . .-.. .-.. ---" | morse; echo
HELLO
The trailing echo
is needed for interactive use in shells in order to print the final newline.
Kees van Voorthuizen