ChipMaster's bwBASIC
This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/sh
- # 12/14/2019 Ken
- # 07/28/2020 enhanced by ChipMaster
- [ -z "$BWBASIC" ] && BWBASIC="$HOME/bwbasic"
- [ ! -d "$BWBASIC" ] && mkdir "$BWBASIC"
- cd "$BWBASIC"
- trap '/bin/echo " "; /bin/echo -e "PROGRAM INTERRUPTED. \007Press Enter "; read j; exit 1' INT
- bwbasic "$@"
- # -n = no newline -e interpret special octel numbers \007 = Bell
- /bin/echo -n "Bwbasic terminated. Press Enter "
- read j
|