
03-27-2007, 09:27 AM
|
| Junior Member | | Join Date: Sep 2009
Posts: 0
| |
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 |