View Single Post
  #9  
Old 03-27-2007, 09:27 AM
unix unix is offline
Junior Member
 
Join Date: Sep 2009
Posts: 0
Default Re: AWK for Windows XP?

Todd Vargo wrote:
> Matthias Tacke wrote:
>> aleu@vp.pl wrote:
>>> What am I doing wrong here? I want to display the 11th column of the
>>> test.txt file.

....
> I wonder if OP wanted the "11th column" or 11th line?
>

Don't know why I misread that :-(

in pure batch this is:
for /f "tokens=11" %A in (test.txt) do @echo/%A

--
Greetings
Matthias
Reply With Quote