mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
15 lines
282 B
Text
15 lines
282 B
Text
|
#!/usr/local/plan9/bin/rc
|
||
|
|
||
|
if (~ $#* 0)
|
||
|
echo usage: spambox 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
|
||
|
spam $box/$m
|
||
|
}
|