Translations - ONYX - 9.0 - Exploitation

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

De MappingDoc
Révision datée du 8 août 2019 à 13:01 par Alestoquoi (discussion | contributions) (Page créée avec « Example (adapt this depending on your system and its configuration): ps -f -U mapadmin | grep -v bash | grep -v "ps \-f" | grep -v "UID" | while read LINE do PID=`echo... »)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)

Example (adapt this depending on your system and its 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