正如它所说的那样。我想将我的一些 etc 文件发送给同事,将它们添加到新的 Thunderbird 电子邮件消息中会很方便。
这可能吗?如果可以,怎么办?
答案1
我谷歌搜索了“thunderbird 命令行”,第一个结果似乎就是你想要的:http://kb.mozillazine.org/Command_line_arguments_(Thunderbird)
答案2
尝试一下,对我来说效果很好:
cat /etc/[file1] /etc/[file2] /etc/[file3] > ~/configs.txt && thunderbird -compose "subject='test',attachment='~/configs.txt'"
或者(修改后的命令也将打印每个文件名):
for file in /etc/[file1] /etc/[file2] ; do echo -e '\n ****' $file '**** \n' >> ~/configs.txt ; cat $file >> ~/configs.txt ; done && thunderbird -compose "subject='test',attachment='~/configs.txt'"
只需将 [fileX] 名称替换为您感兴趣的名称即可。
上述命令将创建一个名为configs.txt
您想要的所有配置文件的新文件,并将其作为附件添加到 TB 中的新“撰写邮件”窗口。