mutt command with multiple attachments in single mail unix
问题 My requirement is to attach all the .csv files in a folder and send them in a single mail. Here is what have tried, mutt -s "subject" -a *.csv -- abc@gmail.com < subject.txt The above command is not working (It's not recognizing multiple files) and throwing the error Error sending message, child exited 67 (User unknown.). Could not send the message. Then I tried using multiple -a option as follows, mutt -s "subject" -a aaa.csv -a bbb.csv -- abc@gmail.com < subject.txt This works as expected.