Skip to content
Snippets Groups Projects
reloadPlugins.sh 193 B
Newer Older
cedric's avatar
cedric committed
#!/bin/sh

cedric's avatar
cedric committed
for i in windowck wckbuttons
    do
    process=$(ps -ef | grep ${i} | grep -v grep | awk '{ print $2}')

    if [[ -n ${process} ]]
        then
        kill ${process}
    fi
done