/usr/bin/morseexec is in morse-simulator 1.2-1ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 | #! /bin/sh
if test $# -lt 1
then
echo "morseexec needs a MORSE script to execute as parameter"
exit 0
fi
/usr/bin/morse run $1
|