At 04:49 PM 2/6/02 -0600, Joshua b. Jore wrote:
>Once converted you could read just specific columns by running a simple
>perl script.like
>
>#!/usr/local/bin/perl
>while (<>) {
> @ary = split /\t/;
> splice @ary, 1, 1;
> print join "\t", @ary;
>}
see also:
man cut