14 lines
235 B
Plaintext
14 lines
235 B
Plaintext
|
#!/bin/rc
|
||
|
|
||
|
if(! ~ $#* 0){
|
||
|
echo usage: Unspam >[1=2]
|
||
|
exit usage
|
||
|
}
|
||
|
|
||
|
if(! ~ `{pwd} /mail/fs/*/[0-9]* || ! test -f raw || ! test -f unixheader){
|
||
|
echo must run in mail directory >[1=2]
|
||
|
exit 'bad dir'
|
||
|
}
|
||
|
|
||
|
cat unixheader raw | upas/unspam
|