我正在尝试通过电子邮件发送名称中包含冒号 (:) 字符的文件:
my_attachment_name=some_file_with_:_in_the_name.txt
uuencode "${my_attachment_name}" "`basename \"${my_attachment_name}\"`"
| mail -s "My Report ..." my_email@xyz.com
但是,当我收到电子邮件时,我看到“:”已从文件名中删除。
some_file_with__in_the_name.txt
我该如何解决?
谢谢。