How to reverse a text file on Windows
This can be done easily with PowerShell without any additional tools:
$x = Get-Content -Path data.txt; Set-Content -Path data.txt -Value ($x[($x.Length-1)..0])
I found the perfect tool for this: tac (part of CoreUtils for Windows)