Path: utzoo!mnetor!uunet!husc6!bbn!cosell.bbn.com!cosell From: cosell@cosell.bbn.com (Bernie Cosell) Newsgroups: comp.mail.mh Subject: Re: turning news articles into MH messages Message-ID: <19524@bbn.COM> Date: 29 Dec 87 20:09:25 GMT References: <207@ksr.UUCP> Sender: news@bbn.COM Reply-To: cosell@bbn.com.UUCP (Bernie Cosell) Organization: BBN Laboratories Incorporated, Cambridge, MA Lines: 22 What I use is the following little shell script. What I do is tell rn to "|savemsg". #!/bin/sh case $# in 0) sed -e '1d' >$H/1 ;; 1) cat $1 >$H/1 ;; *) for file do savemsg $file ; done exit ;; esac refile 1 -src $H +saved