summaryrefslogtreecommitdiff
path: root/livespawn
diff options
context:
space:
mode:
Diffstat (limited to 'livespawn')
-rw-r--r--livespawn10
1 files changed, 0 insertions, 10 deletions
diff --git a/livespawn b/livespawn
deleted file mode 100644
index 44d7257..0000000
--- a/livespawn
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/python
-import sys, os, subprocess
-args = sys.argv[1:]
-if not args: raise SystemExit(1)
-
-pid = os.fork()
-if pid == 0:
- p = subprocess.Popen(args)
- rc = p.wait()
- raise SystemExit(rc)