nxu/femto

16 lines
219 B
Bash
Executable File

#!/bin/sh
#
# see femto.tal for source code
#
# see femto.txt for documentation
TTY=`stty -g`
uxncli asma.rom femto.tal femto.rom
if [ $? -eq 0 ]; then
stty raw -echo
uxncli femto.rom "$@"
stty "$TTY"
fi