in reply to Re^5: use Text::CSV 1.13 please - if you can get it
in thread use Text::CSV 1.13 please - if you can get it
OK, not entirely correct, but to fix the problem of the error message, i- needs something more on windows:
C:\Tmp>perl -pi -we's{Text::CSV}{Text::CSV_XS}g' xx.pm Useless use of a constant in void context at -e line 1. Can't do inplace edit without backup. C:\Tmp>perl -pi -we"s{Text::CSV}{Text::CSV_XS}g" xx.pm Can't do inplace edit without backup. C:\Tmp>perl -pi.bak -we's{Text::CSV}{Text::CSV_XS}g' xx.pm Useless use of a constant in void context at -e line 1. C:\Tmp>perl -pi.bak -we"s{Text::CSV}{Text::CSV_XS}g" xx.pm C:\Tmp>
But I'm sure perl -e"'...'" will not work anywhere.
|
|---|