显示名称为rsync.sh的进程
ps -aux | grep rsync.sh


杀死名称为rsync.sh的所有进程
ps -ef | grep rsync.sh | grep -v grep | awk '{print $2}' | xargs kill -9