From: William James Date: 2006-01-06T17:08:10+09:00 Subject: Re: How do you sort a text file? Danny Abc wrote: > I'm new to Ruby and was wondering how to sort a text file? > > With UNIX scripts, I just use "cat input.txt | sort > output.txt". ruby -e 'puts ARGF.sort' input1.txt input2.txt input3.txt