Lord_Icon
Member
Code:
for ((i=0; i<=5; i++ )); do ps -ef | grep rsh | grep -v grep | awk '{print $2}' | xargs kill; done
bringt im Cronjob immer:
Code:
/bin/sh: 1: Syntax error: Bad for loop variable
Code:
ps -ef | grep rsh | grep -v grep => bringt aktuell keine Treffer. kann es sein, dann der kill befehl zwingend eine PID benötigt ?
Führe ich es händisch auf der Shell aus, kommt:
Code:
Usage:
kill [options] <pid> [...]
Options:
<pid> [...] send signal to every <pid> listed
-<signal>, -s, --signal <signal>
specify the <signal> to be sent
-l, --list=[<signal>] list all signal names, or convert one to a name
-L, --table list all signal names in a nice table
-h, --help display this help and exit
-V, --version output version information and exit
For more details see kill(1).
Danke für Tipps !!!