in reply to Can't find string teminator

Your system uses double quotes for arguments, not single quotes. The arguments you are passing to perl:

1: -ne 2: 'chomp; <-- argument to (-e)xecute 3: print <-- $ARGV[0] 4: "$_\tO\n"' <-- $ARGV[1] 5: jane-austen-emma-ch1.tok <-- $ARGV[2]

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