I have a fixed-width-field file which I\'m trying to sort using the UNIX (Cygwin, in my case) sort utility.
The problem is there is a two-line header at the top of t
You can use tail -n +3 | sort ... (tail will output the file contents from the 3rd line).
tail -n +3 | sort ...