in reply to perl one liner print columns 2.. last

I got this from an example in "Effective Perl Programming", pg 429. This will skip the first line of a file, but what type of columns are you trying to generate?
perl -ne "print unless $. == 1;" filename(s)