DEV Community

AMAN
AMAN

Posted on

WEEK 2

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 with chgrp
  • πŸ§ͺ Practice with shell commands and automation basics

    πŸ“ Download My Notes & Tasks (PDF)

  • πŸ“„ Week 2 Detailed Notes (PDF)

  • βœ… Week 2 Task Checklist (PDF)


πŸ–₯️ Sample Shell Script


bash
#!/bin/bash
echo "Hello, $USER!"
date
Enter fullscreen mode Exit fullscreen mode

Top comments (0)