remove_old_programs.bash 280 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 #!/bin/bash #$1 programs to be killed and checked echo "removing old programs..." echo "args = $1" ps -aux |grep -E -i $1| awk '{print $2}' | sudo xargs kill -9 var=`ps -aux |grep -E -i $1` echo $var if [ -n "$var" ]; then echo 'Match found'; else echo 'Match not found' ;fi