17 lines
203 B
Bash
17 lines
203 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
rm $0
|
||
|
|
||
|
lua "init.lua"
|
||
|
|
||
|
echo "
|
||
|
|
||
|
------------------
|
||
|
(program exited with code: $?)"
|
||
|
|
||
|
|
||
|
echo "Press return to continue"
|
||
|
#to be more compatible with shells like dash
|
||
|
dummy_var=""
|
||
|
read dummy_var
|