我正尝试将一个 3K 文件粘贴到 Thunderbird 的“写入”窗口(即撰写新消息)。
这(有时)有效:
date | xclip
# then use middle button to paste
这不起作用:
cat /tmp/out.txt | xclip
xclip -o | wc # just to make sure it got there - reports: 70 309 3233
# press middle mouse in Thunderbird's "Write" window - nothing is pasted
但这有效:
cat /tmp/out.txt | xclip
# open gedit, paste into gedit, then select-all and copy
# paste into Thunderbird
Thunderbird 通过 X-clipboard 可以接受的内容是否有限制?
还有其他方法可以将文件内容插入 Thuderbird 撰写窗口吗?
我正在使用 Ubuntu 10.10。
答案1
使用撰写命令行怎么样?
thunderbird -compose "to='[email protected]',subject='Test',body='`cat /tmp/out/txt`' "
答案2
我在网上的某个地方发现 xsel 可以解决这个问题 - 我刚刚测试过它,并且从现在开始就会使用它。