Aucbarpa.973 net.news.b utzoo!decvax!ucbvax!ARPAVAX:mark Sun Feb 28 17:29:34 1982 shell script makedist to unpack distribution : 'makedist - shell script to unpack news distribution' : 'usage: makedist files' : 'files should be news articles from net.sources' : 'change d=newsdist below to be the dir you want to create.' o=`pwd` echo taking files from dir $o d=newsdist echo making news distribution directory: $d f=`grep -l ++++1 $*` if test ! -d $d then mkdir $d $d/src $d/man $d/doc $d/misc fi cd $d for i in $f do echo $i cp $o/$i xx ed - xx << '++DONE' 1,/++++1/-d ?++++2?,$d 1t1 1s/++++1/echo/ 2s/++++1/cat >/ s/$/ << '+-+DONE+-+'/ w q ++DONE echo "+-+DONE+-+" >> xx sh xx done rm xx