Some Plan 9 workalikes.

This commit is contained in:
rsc 2003-10-13 18:25:28 +00:00
parent 771ff2bc05
commit 629864f582
4 changed files with 107 additions and 0 deletions

6
bin/kill Executable file
View file

@ -0,0 +1,6 @@
#!/bin/sh
for i
do
psu | awk '$NF ~ /^('$i')$/ {printf("/bin/kill %d # %s\n", $2, $0);}'
done