thunderbird -compose "attachment='$HOME/test test.txt'"
строительство.
thunderbird -compose "attachment='$HOME/test, test.txt'"
не работает и выдает file does not exist
сообщение об ошибке.
это должно быть из - за того, как Thunderbird обрабатывает аргументы командной строки; например,
thunderbird -compose "to='name@mail.com',attachment='~/file.txt'"
compose
аргументы разделяются ,
и именно поэтому иметь ,
в имени файла ломает вещи. Однако я не могу придумать способ "избежать" запятых в имени файла.
Примечание:
- В Thunderbird 3+, использование протокола
file://
не требуется.
и
thunderbird -compose "attachment='$HOME/test test.txt'"
и
thunderbird -compose "attachment='file://$HOME/test test.txt'"
работа.
ни
thunderbird -compose "attachment='$HOME/test, test.txt'"
nor
thunderbird -compose "attachment='file://$HOME/test, test.txt'"
строительство.