summaryrefslogtreecommitdiff
path: root/kill
diff options
context:
space:
mode:
Diffstat (limited to 'kill')
-rwxr-xr-xkill8
1 files changed, 8 insertions, 0 deletions
diff --git a/kill b/kill
new file mode 100755
index 0000000..d90c1b4
--- /dev/null
+++ b/kill
@@ -0,0 +1,8 @@
+#! /bin/sh
+if [ -f emu.pid ]; then
+ kill $(cat emu.pid)
+ rm emu.pid
+ echo "RIP"
+else
+ echo "nothing to RIP"
+fi