killLibreoffice.sh 87 B

12345
  1. #! /bin/bash
  2. for i in `ps -ef|grep soffice.bin|awk '{print $2}'`
  3. do
  4. kill -9 $i
  5. done