Ansh Balanlinuxfordevops.hashnode.dev·an hour agoPart 6: Cron and Crontab in LinuxIn this section, we will dive into the concepts of cron and crontab, two essential tools for scheduling tasks in Linux. We’ll explain their purpose, how to use them, and provide practical examples for automation. What is cron? cron is a time-based jo...cronjob
sameecrontab.hashnode.dev·Dec 3, 2024crontabStructure of a crontab Entry Each entry in a crontab file is made up of two main parts: Schedule specification: Defines when the job should run. Command to execute: Specifies the script, command, or executable to run. Basic Syntax bashCopy code* ...crontab
Saad Asif Mujawaressentialsofdevops.hashnode.dev·Oct 28, 2024Day 5 : Advanced Linux Shell Scripting for DevOps Engineers with User ManagementTask 1 : Create Directories Using Shell Script : - Write a bash script createDirectories.sh that, when executed with three arguments (directory name, start number of directories, and end number of directories), creates a specified number of directori...2 likesLinux
Faizan Shaikhfaizanshaikh.hashnode.dev·Oct 9, 2024Day 5 Task: Advanced Linux Shell Scripting for DevOps Engineers with User Management1) Create Directories Using Shell Script: Write a bash script createDirectories.sh that, when executed with three arguments (directory name, start number of directories, and end number of directories), creates a specified number of directories with ...73 readsshell script
Sina Mokhtaribysina.hashnode.dev·Oct 5, 2024How to Automatically Run a Command on Ubuntu StartupVarious Linux distributions, unlike other available operating systems, offer numerous attractive features and capabilities for their users. One of these features is the ability to configure your operating system in any desired manner and automate it ...UbuntuUbuntu
Dinesh Kumar Kblog.dineshcloud.in·Sep 19, 2024Linux Crontab: Automate Your TasksCrontab (Cron Table) is a powerful Linux utility that allows users to schedule tasks to run automatically at specified intervals. Whether you need to run backups, clean up temporary files, or schedule routine system maintenance, crontab can automate ...LinuxLinux
Kedar Pattanshettikedarpattanshetti.hashnode.dev·Sep 14, 2024☑️Day 13: How to Automate Tasks with Cron🔹Table Of content : ✅Introduction ✅Key Learnings and Concepts ✅Understanding Cron and Crontab ✅Writing Basic Cron Jobs ✅Automating Disk Space Checks and Backups ✅Important Cron Commands ✅Fine-Tuning Cron Jobs ✅Takeaways from Day 13 ...12 likescronjob
Muzammil Jan90days.hashnode.dev·Jul 20, 2024Advance Shell Scripting Tutorial for beginnersTo create multiple directories in given range using script #!/bin/bash # Shebang to specify the script should be run using Bash # Function to create directories create_directories() { local prefix="$1" # First argument: prefix for the directo...Linux
Rhythm Mishrarhythmblogs-1708279784605.hashnode.dev·Jul 15, 2024🛠️ Day 5: Advanced Linux Shell Scripting for DevOps Engineers 💻with User Management 👥🔐Introduction Welcome to Day 5 of the #90DaysOfDevOps challenge! Today, we will cover several topics related to Linux system administration and shell scripting. We'll start with creating dynamic directories using the command line, followed by an autom...1 likeLinux
Adeel Syedade3lsyednba.hashnode.dev·Jul 4, 2024Coding a Morning Weather TextIntroduction I wanted to get started on using python to automate everyday tasks, so for my first automation project I decided to write a program that texts me the weather everyday. I split up this project into 3 big tasks: Use web scrapers to get th...14 likes·115 readspmset