vncdo 发送大小写和特殊字符
vncdo send upper, lower case and special character
我需要在同时发送一个包含大小写和特殊字符的VNC命令;怎么做?这是我目前正在使用的:
call(['vncdo --force-caps -s 192.168.1.1::5900 type Admin!23'], shell=True)
似乎只发送大写字符。
使用:
- Python 2.7
- vncdotool==0.10.0
原来是 VNC 服务器端的问题。 vncdtool 0.10 正确发送了之前指定的大小写和字符。
我需要在同时发送一个包含大小写和特殊字符的VNC命令;怎么做?这是我目前正在使用的:
call(['vncdo --force-caps -s 192.168.1.1::5900 type Admin!23'], shell=True)
似乎只发送大写字符。
使用:
- Python 2.7
- vncdotool==0.10.0
原来是 VNC 服务器端的问题。 vncdtool 0.10 正确发送了之前指定的大小写和字符。