TextFileReverse
A Windows command line tool to reverse the contents of a text file.
A simple command line tool, drop the Reverse.exe into the %systemroot% directory in Windows to call the program from the command line. Then just call like: Reverse /i Path\File.txt and the file will be overwritten with reversed text. Or an outfile can be specified Reverse /i Path\File.txt /o path\OutFile.txt this will leave the original file intact.
A file containing:
item 1
item 2
item 3
Would then be reversed to
item 3
item 2
item 1
You can also remove blank lines...