Well, the python interpreter has no equivalent to -n or -a in the perl
interpreter.  You'd have to implement it using an actual while loop and
because of the indention sensitivity in Python, I don't believe you can
do it on the command line.  (I may be very wrong here, but I've not
gotten it to work).

--
Jerry

On Jan 24, 10:25 pm, "NoName" <[EMAIL PROTECTED]> wrote:
> perl -ane "print join(qq(\t),@F[0,1,20,21,2,10,12,14,11,4,5,6]).qq(\n)"
> file.txt
>
> -a autosplit mode with -n or -p (splits $_ into @F)
> -n assume "while (<>) { ... }" loop around program

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to