打印到 gedit whit xdotool

print to gedit whit xdotool

我想读取一个文本文件的内容,复制到剪贴板(如果不为空)然后粘贴到鼠标光标所在的gedit window。

这是我的脚本:

while true
do
  if [ -s textfile ]
  then
    cat textfile | xclip -selection clipboard
    xdotool key --clearmodifiers Control_L+v
    truncate -s 0 textfile
  fi
done

xdotool以外的所有作品:

我尝试了一些其他命令,例如:

运气不好。

有人可以帮助我吗?

这对我有用:

xdotool type "$(xclip -o)"

我解决了,问题是缺少libx11-dev。安装库后,脚本可以正常运行。