On 2008-02-25, at 15:58, Walt Mankowski wrote:
The sed solution's cute, but you can easily ignore the first line in pure awk without even using any of the hateful gawk extensions:
awk 'NR != 1 { print }'
That's what I originally wrote, I changed it to 'foo-equiv' because I'm stupid.
Or something.