Et en shell ton teste ne fonctionne pas non plus.
J'ai pris ton 1er test chez moi avec httpd au lieu de csup et voilà ce que ça donne
que httpd est en marche ou pas il affiche toujours updating
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9 ~/trash$ pidof httpd 23363 23362 23361 23360 23359 23357 ~/trash$ if [ ' ' != "`pidof httpd`" ]; then echo "updating";fi updating ~/trash$ su -c 'killall -9 httpd' Password: ~/trash$ pidof httpd ~/trash$ if [ ' ' != "`pidof httpd`" ]; then echo "updating";fi updating
Partager