web-dev-qa-db-fra.com

Erreur de type xdotool. Impossible de taper un champ commençant par - (trait d'union / tiret) avec. (point) dans le même champ

$ 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
3
Neeraj Bisht

Bien que je ne le trouve pas documenté dans la page de manuel, xdotool type semble accepter un GNU -- séquence pour indiquer la fin des arguments d'option, c'est-à-dire.

xdotool type -- -14.7873
4
steeldriver