Shell Scripting

Created: 02.02.2025
Updated: 12.03.2025


# Variables

# this is a comment
what="a"   # variable
$what      # access variable
read input # read input from user and put it into input variable

Other things: Positional Arguments, If else, Array, For-Loop, Functions (with return), command concatenation, stdin, stdout, stderr

# Credits/See Also

## bryce vandegrift