Posts about learnings, development tips & much more!

A blog featuring posts on DevOps, AWS, Python, and other development topics

Setup Cron job in Ubuntu 18.04

Tags: devops

Cron is a tool for time based job scheduling - found in most of Unix based operating systems. Although it was developed long time ago, its simplicity & effectiveness is remarkable.

Use

Any script or command which is to be executed in some time interval, can be set with Cron.

Points to remember

/home/username/venv/bin/python  /home/username/venv/project/script.py

Steps

Conclusion

References:


Other posts