Welcome to the Shell Scripting Basics repository! ๐
This repository contains examples and explanations to help you learn the fundamental syntax and concepts of shell scripting.
01-hello-world.sh: Basic "Hello, World!" script.02-variables.sh: Using variables in shell scripts.03-conditions.sh: Conditional statements (if-else).04-loops.sh: Loops .05-functions.sh: Defining and using functions.06-input-output.sh: Handling user input and output.
git clone https://github.com/username/shell-scripting-basics.git
cd shell-scripting-basicsBefore running a script, ensure it has execute permissions:
chmod +x script_name.shExecute any script using the following command:
./script_name.sh