6 lines
96 B
Bash
Executable file
6 lines
96 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for i
|
|
do
|
|
psu | awk '$NF ~ /^('$i')$/ {printf("/bin/kill %d # %s\n", $2, $0);}'
|
|
done
|