in reply to Re: Tk Listbox and SSH command
in thread Tk Listbox and SSH command

Hello, I asked a colleague who has access. Turns out the command create a fatal error : "message authentication code incorrect". I suspected an encoding problem. So I forced the utf-8 encoding of the variable.

$gtk_cmd = Encode::encode('UTF-8', $gtk_cmd, Encode::FB_CROAK);

And it worked perfectly... Thank you for your answer, it led me to the solution. :)

Replies are listed 'Best First'.
Re^3: Tk Listbox and SSH command
by rizzo (Curate) on Jan 17, 2023 at 06:33 UTC

    Glad to hear that.