Translations - ONYX - 9.0 - Exploitation

Guide d'exploitation ONYX Server sur Linux/43/fr

De MappingDoc

Exemple (à adapter selon le système et la configuration) :

ps -f -U mapadmin | grep -v bash | grep -v "ps \-f" | grep -v "UID" | while read LINE
do
 PID=`echo $LINE | awk ' { print $2 } '`
 kill -9 $PID
done