From 03a46fa564b5f7cc7d5d2036f330d6a851a52735 Mon Sep 17 00:00:00 2001 From: Rohit Gupta <rohit.gupta@eurecom.fr> Date: Tue, 23 Aug 2016 20:57:43 +0200 Subject: [PATCH] minor bugfix to kill script --- cmake_targets/autotests/tools/remove_old_programs.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake_targets/autotests/tools/remove_old_programs.bash b/cmake_targets/autotests/tools/remove_old_programs.bash index f3c09ffd61..33c44c32c5 100755 --- a/cmake_targets/autotests/tools/remove_old_programs.bash +++ b/cmake_targets/autotests/tools/remove_old_programs.bash @@ -1,7 +1,7 @@ #!/bin/bash #$1 programs to be killed and checked -ps -aux |grep -E -i $1| awk \'{print $2}\' | sudo xargs kill -9 +ps -aux |grep -E -i $1| awk '{print $2}' | sudo xargs kill -9 var=`ps -aux |grep -E -i $1` echo $var -- GitLab