in reply to Re^2: max and min values in 3-column file
in thread max and min values in 3-column file
then it means that the script is reading from STDIN (standard input). You now need to find out how to compose a command line that passes your file on STDIN to the perl script, which is a nice little exercise... :)while (<>){ ... }
|
|---|