in reply to Re: utf8 "\xB7" does not map to Unicode at /usr/local/bin/... line 112.
in thread utf8 "\xB7" does not map to Unicode at /usr/local/bin/бибс/об‰ line 112.

I don't think its possible (easy) for qx to trigger https://metacpan.org/pod/perldiag#s-x-X-does-not-map-to-Unicode
Why, it's pretty easy
$ touch $'\xB7' $ perl -wE 'use open qw( :encoding(utf-8) :std ); qx( ls )' utf8 "\xB7" does not map to Unicode at -e line 1.
To the OP:
So, i suppose error appears because of the output that qx operator returns
I suppose the error appears because your file name is not in valid UTF-8. You should check that.
  • Comment on Re^2: utf8 "\xB7" does not map to Unicode at /usr/local/bin/... line 112.
  • Download Code