in reply to Can't find string teminator

perl -ne 'chomp; print "$_\tO\n"' test.txt > bla.txt

works very well here on a linux command line. Maybe it is windows or you had a typo.

PS: Please use code tags for your code

Replies are listed 'Best First'.
Re^2: Can't find string teminator
by deep.ocean (Initiate) on Apr 06, 2010 at 17:28 UTC
    Thank You