diff options
author | rsc <devnull@localhost> | 2003-10-13 18:25:28 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2003-10-13 18:25:28 +0000 |
commit | 629864f582b3da6517aee2cac55c26cc832d65b6 (patch) | |
tree | b2ccb6a0066032fab46010ed6444a47a79b22e91 /bin/kill | |
parent | 771ff2bc058ee7177828e8d2c01fbd9619933784 (diff) | |
download | plan9port-629864f582b3da6517aee2cac55c26cc832d65b6.tar.gz plan9port-629864f582b3da6517aee2cac55c26cc832d65b6.tar.bz2 plan9port-629864f582b3da6517aee2cac55c26cc832d65b6.zip |
Some Plan 9 workalikes.
Diffstat (limited to 'bin/kill')
-rwxr-xr-x | bin/kill | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/kill b/bin/kill new file mode 100755 index 00000000..d0723c50 --- /dev/null +++ b/bin/kill @@ -0,0 +1,6 @@ +#!/bin/sh + +for i +do + psu | awk '$NF ~ /^('$i')$/ {printf("/bin/kill %d # %s\n", $2, $0);}' +done |