我是 Ubuntu 新手,我想发送一封电子邮件,其中我从 sh 脚本中的变量获取主题,在下面的脚本中注意主题变量。邮件已发送,但主题是“$subject”,而不是 SSH 登录
#!/bin/bash
##This script sends a message
subject="SSH Login:"
curl -s --user 'api:key-xxxxxxxxxxxxxxx' https://api.eu.mailgun.net/v3/adoptatias.com/messages -F from='Excited User <[email protected]>' -F to='[email protected]' -F subject='$subject' -F text='Detected succesfull SSH login'
exit 0;
我究竟做错了什么?