Perl でメール送信(自動送信)

at コマンド(一度限り)


    [user]$ at "hh:mi dd.mm.yyyy"   # ジョブを登録
    [user]$ at "02:11 20.06.2016"

      warning: commands will be executed using /bin/sh
      at> perl /path/to/mail.pl
      at> [Ctrl] + [D]
      job 9 at Mon Jun 20 02:11:00 2016

    [user]$ atq   # ジョブ一覧

      9   Mon Jun 20 02:11:00 2016 a user

    [user]$ at -c ジョブ番号   # 内容確認
    [user]$ atrm ジョブ番号   # 取り消し

cron(定期実行)


    [user]$ crontab -e   # ジョブを登録

      56 2 * * * /path/to/mail.pl

    [user]$ crontab -l   # ジョブ一覧