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
chown
and 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)