Linux Command

Linux Command

Β·

1 min read

Hey fellow tech enthusiasts! πŸ‘‹ Day 2 of the #90DaysOfDevOpsChallenge is here, and I'm thrilled to dive into some essential Linux commands with you. πŸš€πŸ’» But before we begin, I suggest checking out these two blogs: 1) 'Linux: A Quick Glimpse' and 2) 'Linux: Basics Commands'.

Understanding the Basics:

Today, let's take a quick look at three fundamental Linux commands:

  1. Check your present working directory:

     pwd
    

    This command tells you where you are in the system. Handy for keeping your bearings!

  2. List all files or directories, including hidden ones:

     ls -a
    

    The -a flag ensures you see everything, even those sneaky hidden files.

  3. Create a nested directory A/B/C/D/E:

     mkdir -p A/B/C/D/E
    

    This command crafts a nested directory structure without breaking a sweat.

Why these Commands Matter:

Mastering these basics is like having a superpower in the Linux world. πŸ¦Έβ€β™‚οΈ Whether you're a seasoned pro or just starting, these commands lay the foundation for smooth navigation and control.

Your Task for Day 2:

Give these commands a spin on your Linux system, and feel the power at your fingertips! πŸ’ͺ Share your experience or any questions in the comments below. Let's learn and grow together!

Keep the tech vibes strong! πŸ’™πŸŒ

Image by Freepik

Β