转储xinput缓冲区

时间:2019-06-26 18:31:13

标签: bash grep xinput

我编写了一个脚本,该脚本监视键盘上的活动(即使该脚本在后台运行),并根据这些事件采取措施。但是,我有时需要暂停它,当它恢复时,我需要它不对暂停期间发生的按键操作采取任何措施。这是我的代码:

xinput test-xi2 --root 3| grep -A2 --line-buffered RawKeyRelease | while read -r line ;
do 
done

当前,当我恢复该过程时,它将立即对暂停期间发生的所有键盘事件采取措施。我该如何转储这些缓冲的按键?

谢谢!

0 个答案:

没有答案