Translations - ONYX - 9.0 - Exploitation - Guide d'exploitation ONYX Server sur Linux/43/en

Différence entre versions

De MappingDoc
(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... »)
 
(Aucune différence)

Version actuelle datée du 8 août 2019 à 13:01

Informations concernant le message (contribuer)

Ce message n’est pas documenté. Si vous savez où ou comment il est utilisé, vous pouvez aider les autres traducteurs en créant sa documentation.

Définition du message (ONYX:9.0:Exploitation:Guide d'exploitation ONYX Server sur Linux)
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
TraductionExample (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

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