Extracting columns from text file using Perl: similar to Unix cut
- by atricapilla
Hi,
I'm using Windows and I would like to do extract certain columns from text file using Perl, Python, batch etc. one liner.
On Unix I could do this:
cut -d " " -f 1-3 <my file>
How can I do this on Windows?