nxu/femto

16 lines
219 B
Plaintext
Raw Normal View History

2022-02-07 23:00:15 -05:00
#!/bin/sh
2022-03-23 23:03:20 -04:00
#
# see femto.tal for source code
#
# see femto.txt for documentation
2022-02-07 23:00:15 -05:00
TTY=`stty -g`
2022-04-13 00:19:04 -04:00
uxncli asma.rom femto.tal femto.rom
2022-02-08 22:22:08 -05:00
if [ $? -eq 0 ]; then
stty raw -echo
2022-02-09 02:35:46 -05:00
uxncli femto.rom "$@"
2022-02-08 22:22:08 -05:00
stty "$TTY"
fi