Hey Devs! ๐
In Week 2 of my DevOps learning journey, I explored shell scripting, file permissions, and file ownership in Linux. Here's a summary of what I learned and worked on!
๐ Topics Covered
- ๐ What is a shell and how it works
- โ๏ธ Writing and executing basic shell scripts
- ๐ Linux file permissions: read (
r), write (w), execute (x) - ๐ค Changing ownership with
chownand groups withchgrp -
๐งช Practice with shell commands and automation basics
๐ Download My Notes & Tasks (PDF)
๐ฅ๏ธ Sample Shell Script
bash
#!/bin/bash
echo "Hello, $USER!"
date
Top comments (0)