Text File Shuffler
by wrybread@wrybread.com
October 2007

Takes a text file and shuffles it line by line. So for example,
if the input file looks like this:

line1
line2
line3
line4

The output file might like this:

line4
line1
line2
line3

Not much to it.


GUI usage:

Just run shuffle.exe then browse to the input file, and it'll tell you
what the output file is.

Commandline usage:

shuffle.exe [input file] [output file]

For example, if you want to shuffle c:\somefile.txt, you'd type:

shuffle.exe c:\somefile.txt

This would output c:\somefile-shuffled.txt

Or if you want to specify the output file, you'd type:

shuffle.exe c:\somefile.txt c:\shuffled.txt


Python source code include as shuffle.py.

Feel free to email wrybread@wrybread.com with any questions.

