次のコマンド:
thunderbird -compose [email protected],subject=testmail,body="something"
これは機能しますが、bodyタグにカンマがない場合にのみ可能です。これは次のとおりです。
"dsafdsafcc \/sda/fads ;.f af af a"
;
ただし、そうでない場合は機能しません,
。同様の選択肢も\,
機能しません。,
私が渡したすべての文字列を破壊しているようですbody
。
body
全文を改行文字に渡すには,,
?
答え1
body="' ...something...'"
必要なものを得るには、パッケージ化されたコンテンツが必要だと思います。
$ thunderbird –compose "to='[email protected]',subject='nice tip',body='Check out this neat command line tip'"
次のように、本文の内容をファイルに入れて送信することもできます。
$ thunderbird –compose "to='[email protected]',subject='nice tip',body='$(cat somefile.txt)'"