home *** CD-ROM | disk | FTP | other *** search
- @echo off
- REM Simple pipe operation.
- REM getbatch strips batch header
- REM compress (the standard utility) decompresses the batch
- REM putnews converts the batch to mailbox format
- REM the result is appended to the user's news mailbox
- REM
- getbatch %1 | compress -d | putnews >>%2
- del %1
-