All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ot.enos-subscribe.2.0.0.source-code.shutdown-conn-test.sh Maven / Gradle / Ivy

There is a newer version: 3.0.3
Show newest version
#!/bin/sh


pids=`ps axu | grep java | grep "sub.client" | awk '{print $2}' | xargs`
for i in $pids; do
   kill -15 $i
   if [ $? -le '123' ]; then
        exit 0
   fi
done


exit $?




© 2015 - 2024 Weber Informatics LLC | Privacy Policy