web-dev-qa-db-ja.com

Thunderbird作成ウィンドウにファイルを貼り付けるコマンドラインメソッド?

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クリップボードを介して受け入れることができるものに制限はありますか?

ファイルの内容をThuderbird作成ウィンドウに挿入する別の方法はありますか?

Ubuntu10.10を使用しています。

5
ErikR

作成コマンドラインを使用するのはどうですか?

Thunderbird -compose "to='[email protected]',subject='Test',body='`cat /tmp/out/txt`' "
3
Paul

Webのどこかで、xselがそのトリックを実行していることがわかりました。テストしたばかりで、これから使用します。

1
Eugene