mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
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
|