Skip to content
Snippets Groups Projects
Commit f9cf8e5e authored by Rohit Gupta's avatar Rohit Gupta
Browse files

fix for script that kills old programs

parent 300fc152
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ pid="$$"
echo "pid = $pid"
echo "Killing programs now..."
var=`ps -aux |grep -E -i $1 |awk '{print $2}'| tr '\n' ' ' | sed "s/$pid/ /"`
var=`ps -aux |grep -E -i '$1' |awk '{print $2}'| tr '\n' ' ' | sed "s/$pid/ /"`
echo $var
if [ -n "$var" ] ; then sudo kill -9 $var ; fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment