Category: Bash

0

Chapter 1: Bash Home

Bash Home β€” or more precisely, what “$HOME” means in Bash, and also the famous ~ (tilde) that people use all the time. Think of your computer like a big apartment building. Every person...

0

Chapter 2: Bash Introduction

Bash Introduction Day! πŸ˜„ I’m going to explain what Bash really is like we’re sitting together in Hyderabad, no fancy words, just clear simple English with examples, like a friend teaching another friend. Imagine...

0

Chapter 3: Bash Get Started

Bash Get StartedΒ day β€” the exact moment you stop being scared of the terminal and start becoming its boss! 😎 I’m going to walk you through how to actually begin using Bash right now,...

0

Chapter 4: Basic Commands

Basic Commands in Bash β€” the absolute foundation. Think of these as the “alphabet” of the terminal. Once you know these 15–20 commands really well, 80% of your daily terminal work becomes easy and...

0

Chapter 5: Bash Commands

Bash commands are the words/phrases you type in the terminal that Bash understands and executes. Almost everything you do in Bash is running one (or many) of these commands. There are hundreds of commands,...

0

Chapter 6: Bash List (Is)

Bash List (ls) β€” or as most people say, the ls command. You wrote “Bash List (Is)” β€” I think you mean ls (the letter “L” + “S”), because in Bash/Unix/Linux, the command to...

0

Chapter 7: Bash Change Dir (cd)

Bash Change Dir (cd) β€” the cd command, which stands for “Change Directory”. This is one of the first three commands every beginner learns (along with pwd and ls), because without cd, you’re stuck...

0

Chapter 8: Bash Print Dir (pwd)

Bash Print Dir (pwd), which means the pwd command! pwd stands for Print Working Directory. It’s one of the first three golden commands every beginner should know by heart (along with ls and cd)....

0

Chapter 9: Bash Echo (echo)

Bash Echo (echo) β€” the echo command, one of the most used and most helpful commands in Bash. Think of echo like your personal loudspeaker in the terminal. Whatever you want to say (text,...

0

Chapter 10: Bash Concatenate (cat)

Bash Concatenate (cat) today! πŸ˜„ cat is one of the most useful and most misused commands in Bash/Linux. It’s everywhere β€” beginners love it, experts use it cleverly, and even servers run it thousands...