From 197f6913affe93becb2142e91f0877b7973e4afa Mon Sep 17 00:00:00 2001 From: imdano <> Date: Wed, 15 Aug 2007 07:25:10 +0000 Subject: [PATCH] Added a bunch of bug fixes from the experimental branch to the testing branch. Added disconnect script feature and executing script in usermode feature to testing branch --- run-script.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/run-script.py b/run-script.py index 4ba165d..8c69cab 100755 --- a/run-script.py +++ b/run-script.py @@ -10,4 +10,7 @@ command = '' for stuff in sys.argv[1:]: command = command + ' ' + stuff print 'command = ',command -print misc.Run(command) +pid = os.fork() +print 'hey' +if not pid: + misc.Run(command)