Created
July 25, 2017 14:51
-
-
Save jcornaz/ad0529260cb560e134c48b0b620a9812 to your computer and use it in GitHub Desktop.
Sort a file with windows DOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sort /M 1024000 "in.txt" /o "out.txt" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
"int.txt"
is the input file/M 1024000
is the memory amount allocated to the process/o "out.txt"
is the output file