editor없이 crontab에 추가하는 방법
crontab -l > /tmp/cron
echo "* * * * * echo hello" >> /tmp/cron
crontab /tmp/cron
rm /tmp/cron
- crontab file
- 파일을 읽어서 crontab에 설치함 (덮어쓰기됨)
- 출처:https://stackoverflow.com/questions/878600/how-to-create-a-cron-job-using-bash-automatically-without-the-interactive-editor