[Raspberry Pi] xdotool でキーボード操作2
以前 xdotool を使ったキーボード操作について書いた。
[Raspberry Pi] xdotool でキーボード操作 – with a Christian Wife
https://wacw.cf/2020/07/29/keyboard-simulation-with-xdotool/
文字列を使うには xdotool type コマンドを使う。
$ xdotool type abc
文字列がスペースを含む場合はどうすればいいか。シングル・クオーテーション・マークで囲えばいい。
$ xdotool type 'abc 123'
特に xdotool type コマンドでは、文字列が長いと入力が追いつかないことがある。そういうときは –delay オプションで文字ごとの入力を遅らせることができる(単位はミリセカンド)。
$ xdotool type 'abc 123' --delay 100