Eclipse tip : work around for the < argument
This post is a quick tip on Eclipse usage. Suppose you are running a java application that reads in a file whose name is supplied at the command line with the < operator. This idiom is used in Algorithms Fourth Edition by Robert Sedgewick and Kevin Wayne. Example : java TopM 5 < tinyBatch.txt The code to process the data in tinyBatch.txt is :