mirror of
https://github.com/elua/elua.git
synced 2025-01-08 20:56:17 +08:00
12 lines
150 B
Bash
Executable File
12 lines
150 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Setup terminal
|
|
stty -echo raw -igncr
|
|
|
|
# Run simulator
|
|
./elua_lua$1_linux.elf
|
|
|
|
# Restore terminal to default settings
|
|
stty echo cooked
|
|
|