選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

setup.sh 311 B

12345678
  1. #!/bin/bash
  2. rm sendMail.sh
  3. echo "Please enter the email of your emergency contact: "
  4. read inputline
  5. printf "echo \"I fell from my bike! Please send help!\" | mail -s \"HELP\" -A \"photo.jpg\" $inputline\necho \"Email sent!\"" >> sendMail.sh
  6. chmod 755 sendMail.sh
  7. echo "Emergency contact set as \"$inputline\""