mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
14 lines
179 B
Bash
Executable file
14 lines
179 B
Bash
Executable file
#!/bin/sh
|
|
|
|
sig=""
|
|
case "$1" in
|
|
-*)
|
|
sig=" $1"
|
|
shift
|
|
;;
|
|
esac
|
|
|
|
for i
|
|
do
|
|
psu | awk '$NF == "'"$i"'" || $2 == "'"$i"'" {printf("/bin/kill%s %d # %s\n", "'"$sig"'", $2, $0);}'
|
|
done
|