utf8-all icon indicating copy to clipboard operation
utf8-all copied to clipboard

Does not work with -s switch

Open appomsk opened this issue 4 years ago • 3 comments

Linux Mint 20 Package: libutf8-all-perl
Version: 0.024-1

perl -Mutf8::all -sle 'print $v' -- -v=привет
пÑивеÑ

This does not work either:

perl -CASD -Mutf8 -Mv5.30 -sle 'print $v' -- -v=привет

This works:

perl -MEncode -sle 'print decode("utf-8", $v)' -- -v=привет                                        
привет

By the way:

ruby -se 'puts $v' -- -v=привет 
привет

and

awk -v v=привет 'BEGIN {print v}'
привет

appomsk avatar Aug 09 '20 12:08 appomsk