如何自动将 X11 剪贴板的 txt 内容附加到 Linux 命令行的末尾

How to automatically append the txt contents of the X11 clipboard to the end of a Linux command line

:)

我用Linux薄荷

每天我 运行 一个 BASH 脚本,附加一个新的网站 link。

脚本如下所示: ./分析http://www.the-daily-variable-web-link-goes-here.com

在我使用鼠标复制 link 后的每一天,只要双击 BASH 脚本就可以自动拉取 X11 的内容(主要)剪贴板(包含网络 link)到 ./analyse 命令(命令行)的末尾。

我安装了xsel(一直无法安装xclip)

无法弄清楚这一点。

有什么帮助吗? :)

像这样?

#!/bin/sh
./analyse `xsel -o`