Skip to content

Latest commit

 

History

History
86 lines (53 loc) · 3.61 KB

README.md

File metadata and controls

86 lines (53 loc) · 3.61 KB

Bash Scripting: Topic Wise Learning

The repository consists Bash scripting topics and resources in a structured way

Table of Contents

  1. Bash Variables
  2. Decision Making
  3. Bash Scripting
  4. Bash String Handling
  5. Bash Functions
  6. Bash Looping
  7. Bash File Testing
  8. Bash Arrays
  9. Bash Arguments
  10. File Redirection

Bash Variables

Learn about different types of variables in Bash, including local and global variables, and how to use them.

Decision Making

Understand how to use conditional statements in Bash to make decisions within your scripts.

Bash Scripting

Get started with writing Bash scripts, including script structure, shebang, and execution permissions.

Bash String Handling

Learn how to manipulate and handle strings in Bash, including string concatenation, slicing, and more.

Bash Functions

Explore the use of functions in Bash to modularize and reuse code within your scripts.

Bash Looping

Understand different looping constructs in Bash, including for, while, and until loops.

Bash File Testing

Learn how to test files in Bash for various attributes such as readability, writability, and more.

Bash Arrays

Explore the use of arrays in Bash to store and manipulate lists of data.

Bash Arguments

Learn how to handle arguments passed to Bash scripts and how to use them within your scripts.

File Redirection

Understand how to use file redirection in Bash to manage input and output streams.