From 9a30a0e29bec6085f5a0341a0a42998c3ff9e491 Mon Sep 17 00:00:00 2001 From: "Manuel Amador (Rudd-O)" Date: Fri, 23 Oct 2015 00:32:00 +0000 Subject: [PATCH] qssh needs to mimic the way in which executes remote commands --- bin/qssh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/qssh b/bin/qssh index c27f995..a05391a 100755 --- a/bin/qssh +++ b/bin/qssh @@ -41,6 +41,6 @@ while True: cmd = [ path_to_bombshell, host, - ] + rest + ] + ["sh", "-c", " ".join(rest)] os.execvp(cmd[0], cmd)