* <simon.perreault@viagenie.ca> [2008-10-07 10:50]:
> $ cat >test.pl
> #!/usr/bin/perl -CS
> print "hello world\n";
> $ chmod +x test.pl
> $ ./test.pl
> Too late for "-CS" option at ./test.pl line 1.
> $
This is not a bug in perl, it’s a bug in your shebang line. The
fact that this used to work was a bug in perl that has since been
fixed. The correct incantation for what you want to achieve is
use open qw( :std :encoding(UTF-8) );
Regards,