http://www.perlmonks.org?node_id=935773


in reply to code optimization

For a command line version using clac (http://sourceforge.net/projects/clac/), how about:

grep -P "\d\s+\d" test.lst | awk '{print $1 "/" $2}' | clac | sort -n +| head -n 1

Replies are listed 'Best First'.
Re^2: code optimization
by spx2 (Deacon) on Nov 04, 2011 at 10:26 UTC