Ŀ
                       FILESORT.EXE (Sorts ASCII Files)                     


Usage.........FILESORT inputfile [outputfile] [/R]

File Sort will allow you to sort ASCII files.  Very massive text files may not
sort due to lack of memory, as all the file has to be read into RAM.

inputfile.....the name of the ascii file that you wish to sort.
outputfile....an optional file name to hold the sorted input file. If no
              output file is specified, then the input file is sorted and
              wrote to disk.
/R............sort the file in descending order. The default is ascending.

Examples


FILESORT FILE1.BAS /R 
will sort the file FILE1.BAS in normal ascending order.

FILESORT FILE1.BAS FILE2.BAS 
will sort FILE1.BAS and create a sorted output file FILE2.BAS

