Skip to content

Instantly share code, notes, and snippets.

@jcornaz
Created July 25, 2017 14:51
Show Gist options
  • Save jcornaz/ad0529260cb560e134c48b0b620a9812 to your computer and use it in GitHub Desktop.
Save jcornaz/ad0529260cb560e134c48b0b620a9812 to your computer and use it in GitHub Desktop.
Sort a file with windows DOS
sort /M 1024000 "in.txt" /o "out.txt"
@jcornaz
Copy link
Author

jcornaz commented Jul 25, 2017

"int.txt" is the input file
/M 1024000 is the memory amount allocated to the process
/o "out.txt" is the output file

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment