© 2023 Hashnode
#cronjob
Recently, I was in a situation where I needed cron jobs to run inside my DevContainer, to mimic the behaviour of my production machine. Specifically, in the context of log rotation. And, given that th…
Overview This is an introductory article to explain how to automate Bash scripts in Ubuntu by using the Terminal and a cronjob or a technique called cron. Materials Computer Ubuntu Operating System …
If you noticed that there are total 90 sub-directories in the directory '2023' of this repository. What did you think, how did I create 90 directories? Manually one by one or using a script, or a comm…
In this blog post, I'm excited to share my experience of how I automated file organization using Python and Cron. Like many others, I encountered the daunting task of managing numerous files without a…
Introduction In my last article, we covered how to create a manage Supabase Edge Functions. Today I'll be covering the process to create a cron job to automate the execution of our edge functions to r…
Cron jobs are an essential component of any modern application that requires scheduled tasks to be executed at specific intervals. However, managing cron jobs can be a tedious task, especially when th…
Cron jobs are an essential tool for developers who want to automate recurring tasks such as sending emails, running backups, and cleaning up log files. However, managing cron jobs can be challenging a…
Creating n number of directories using a script Two ways of creating a directory One is a normal method which is described as below #!/bin/bash for i in {1..90} do mkdir days$i; done Us…
Job scheduling is like conducting an orchestra; every task must play its part at the right time to create a harmonious symphony of efficiency. In the world of software systems, job scheduling plays a…
Crontab is a time-based job scheduler in Unix-like operating systems. It allows users to schedule commands or scripts to run automatically at specified intervals, such as minutes, hours, days, or week…