xdotool type error. Não é possível digitar um campo a partir de - (hífen / traço) com. (ponto) no mesmo campo

2
$ xdotool type -14.7873
type: unrecognized option '-14.7873'
Usage: type [--window windowid] [--delay milliseconds] <things to type>
--window <windowid>    - specify a window to send keys to
--delay <milliseconds> - delay between keystrokes
--clearmodifiers       - reset active modifiers (alt, etc) while typing
--args N  - how many arguments to expect in the exec command. This is
            useful for ending an exec and continuing with more xdotool
            commands
--terminator TERM - similar to --args, specifies a terminator that
                    marks the end of 'exec' arguments. This is useful
                    for continuing with more xdotool commands.
-h, --help             - show this help output
    
por Neeraj Bisht 08.07.2017 / 21:05

1 resposta

3

Embora eu não consiga encontrá-lo documentado na página de manual, xdotool type parece aceitar uma sequência -- do estilo GNU para indicar o fim dos argumentos da opção, ou seja,

xdotool type -- -14.7873
    
por steeldriver 08.07.2017 / 21:14