diff --git a/IT/Scripting.md b/IT/Scripting.md index a70daa8..ac60999 100644 --- a/IT/Scripting.md +++ b/IT/Scripting.md @@ -107,7 +107,12 @@ echo “Done counting” ``` ## Functions - +While there are a few ways to declare a function in bash, the most common syntax looks like this: +```bash +function_name () { + echo "I was called by a function" +} +``` ## Commands | Command | Description |