#!/bin/sh

PIDS=`ps x |
egrep '\<(notifd|SALOME_Session_Server|SALOME_LauncherServer|SALOME_ConnectionManagerServer|FactoryServerPy|omniNames)\>' |
grep -v egrep |
awk '{ print $1; }'`
[ -z "$PIDS" ] || kill $PIDS
