Author: web-admin

0

Chapter 44: Bash TAR Archive

Bash TAR Archive tar is one of the oldest and most important commands in the entire Unix/Linux/Bash world. It’s been around since the 1970s (yes, really!) and is still used every single day in...

0

Chapter 45: File Permissions

File Permissions This is one of the most important topics in Linux/Bash — once you understand file permissions, you will never be confused again when you see “Permission denied”, or when a script won’t...

0

Chapter 46: Bash Ownership

Bash Ownership (or more correctly, File & Folder Ownership in Linux/Bash)! ☕ This topic is super important because permissions (which we learned last time — rwx) only work together with ownership. Without understanding who...

0

Chapter 47: Bash Modify (chmod)

Bash Modify (chmod) chmod = change mode This is the most important command for controlling file & folder permissions in Linux/Bash. After we learned what permissions look like (ls -l showing rwxr-xr-x), and who...

0

Chapter 48: Bash Ownership (chown)

Bash Ownership (chown) This is the second half of the permission + ownership story (we already covered chmod for changing permissions, and now chown is how we change who owns the file or folder)....

0

Chapter 49: Bash Group (chgrp)

Bash Group (chgrp) This is a small but very useful command that many beginners skip or forget about, but once you understand it, you’ll see why Linux groups are so powerful — especially when...

0

Chapter 50: Scripting

Scripting — that is, Bash Scripting. Imagine this: Typing one command → like asking your friend to pass you one glass of water Writing a script → like writing a small note: “Hey friend,...

0

Chapter 51: Bash Syntax

Bash Syntax Bash syntax means the correct rules and grammar you must follow when writing commands — whether you type them directly in the terminal (interactive mode) or put them inside a script file...

0

Chapter 52: Bash Script

Bash script What is a Bash Script? (The Honest, Simple Answer) A Bash script is nothing more than a normal text file that contains a list of Bash commands — the same commands you...

0

Chapter 53: Bash Variables

Bash Variables Variables are one of the most powerful and most used things in Bash scripting — once you understand them, your scripts become smart, flexible, and reusable. Think of a variable like a...