A simple command-line tool to sort lines of text.
From the project root, run:
perl Makefile.PL
make
make test
make install
Pipe text into sort-lines, for example:
printf "banana\napple\ncherry\n" | sort-lines
apple
banana
cherry
Or read from a file:
sort-lines < input.txt > sorted.txt
Run:
make test