#!/bin/zsh
for f in `pidof sleep`;do
if pstree -a -s -p $f|grep -iqw jenuxupdate;then
kill -9 $f
fi
done
