diff options
author | rsc <devnull@localhost> | 2006-05-21 18:39:29 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2006-05-21 18:39:29 +0000 |
commit | f1007ee0c6a2dfdc5512a1be3dada65cbc5d5391 (patch) | |
tree | 2a2b6aae68d2caa2d102fc2acc2d5f429dea02ce /bin/upas/unspambox | |
parent | 38c7eb9bd22e05ef32998858b178edaf8269cbab (diff) | |
download | plan9port-f1007ee0c6a2dfdc5512a1be3dada65cbc5d5391.tar.gz plan9port-f1007ee0c6a2dfdc5512a1be3dada65cbc5d5391.tar.bz2 plan9port-f1007ee0c6a2dfdc5512a1be3dada65cbc5d5391.zip |
new
Diffstat (limited to 'bin/upas/unspambox')
-rwxr-xr-x | bin/upas/unspambox | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/upas/unspambox b/bin/upas/unspambox new file mode 100755 index 00000000..bfa70531 --- /dev/null +++ b/bin/upas/unspambox @@ -0,0 +1,14 @@ +#!/usr/local/plan9/bin/rc + +if (~ $#* 0) + echo usage: unspambox mailfs/mbox && exit "usage" +box=$1 +msgs=(`{9p ls $box>[2=1]|awk '$10 ~ /[0-9][0-9]*/{print $10}'}) +if (~ $#msgs 0) + echo no messages in $box && exit "none" + +echo -n adding +for (m in $msgs){ + echo -n ' '$m + unspam $box/$m +} |