#shell-script
Read more stories on Hashnode
Articles with this tag
Bash script that accomplishes the task of analyzing log files and generating a daily summary report. The script will: Accept the path to the log file...
The script will create timestamped backups and retain only the last 3 backups by deleting the older ones. Let’s call it backup_with_rotation.sh: vim...
Complete Script: day8_task.sh #!/bin/bash # Day 8 Task: Shell Scripting Challenge # This script demonstrates the use of comments, echo, variables,...
1) Create Directories Using Shell Script: Write a bash script createDirectories.sh that, when executed with three arguments (directory name, start...
What is kernel? A kernel is like the "boss" of your computer. It controls everything that happens inside the computer, making sure that different...