reloadPlugins.sh 193 B

123456789101112
  1. #!/bin/sh
  2. for i in windowck wckbuttons
  3. do
  4. process=$(ps -ef | grep ${i} | grep -v grep | awk '{ print $2}')
  5. if [[ -n ${process} ]]
  6. then
  7. kill ${process}
  8. fi
  9. done