``` // Generates a random.txt file with parameters specified, and exits // parameters besides N, are only used internally to specify how big are the chunks written
-g -N 100000 -b 10 -n 101 -o // Sort the input file, using the temporary dir, and the parameters specified, save to the output file
-i -o -d -N 100000 -b 10 -n 101 // If no option is specified, system will prompt for parameters, and use the input data from stdin
``` - option `-i` implies the program is supposed to sort something, and thus is incompatible with `-g` - when a parameter is not specified the default values are used: - i = "1.in" - o = "1.out" - d = "tmp" - g isn't set (false) - N = 100000 - b = 10 - n = 101