in reply to How to switch off the autosplit ?

You could always do it manually.

perl -ne 'BEGIN{$autosplit = 1} @F=split(" ") if $autosplit; $value = pop(@F); if ( $value == 0 ) { $autosplit = 0 } else { print @F[0 .. 2] }'

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.