我必须使用此处的文档编写一个 shell 脚本,该脚本将向邮件列表上的每个学生发送个性化的问候电子邮件。我使用以下脚本向个人用户发送邮件:
$ cat > here.sh
mail $1 << endoftext
Dear $1
Welcome to the Unix Class
-$USER
endof text
我是 Unix 新手,所以无法创建邮件列表。
非常感谢您的帮助。
我必须使用此处的文档编写一个 shell 脚本,该脚本将向邮件列表上的每个学生发送个性化的问候电子邮件。我使用以下脚本向个人用户发送邮件:
$ cat > here.sh
mail $1 << endoftext
Dear $1
Welcome to the Unix Class
-$USER
endof text
我是 Unix 新手,所以无法创建邮件列表。
非常感谢您的帮助。