Re: can I quickly alphabetize my news groups?

Tom D. Baccanti (tdb@delta1.deltanet.com)
Mon, 22 Jul 1996 11:06:19 +0900

bat file for sorting
Lines: 16

@echo now sorting yarn groups
@echo off
cd \yarn\yarn
@echo making backup of newsrc
@echo off
copy newsrc newsrc.old
@echo now sorting newsrc
@echo off
sort < newsrc > newsrc.srt
@echo now renaming newsrc file
@echo off
del newsrc
ren newsrc.srt newsrc
@echo sort is done
@echo off
cd\