在文本输出中编码句点

时间:2016-10-15 02:10:38

标签: bash character-encoding xdotool

我正在尝试将此xdotool type '172.06'输出到文本框中,但它会输入17206.编码是否有问题?为什么它会进入最后一段时期?请注意,当我在终端中运行它时,它可以很好地工作。

我找到了关于该主题的google group discussion,但没有看到适用于.符号的答案

注意:

  • xdotool版本3.20150503.1
  • 布局:我们
  • xdotool在终端工作(linux mint)
  • textbox是游戏EVE中的文本输入字段(不知道如何提供更多相关信息)

  • 1 个答案:

    答案 0 :(得分:1)

    运行

    时会发生什么
    xdotool type '172' && xdotool type '.' && xdotool type '06'
    

    ?如果有效,请尝试增加输入延迟

    xdotool type --delay 25 '172.06'