diff --git a/guide/english/bash/index.md b/guide/english/bash/index.md index 8802355c7b..633444162f 100644 --- a/guide/english/bash/index.md +++ b/guide/english/bash/index.md @@ -60,6 +60,14 @@ or zach@marigold:~$ chmod 744 myBashScript.sh ```` And then execute the script. +## Script Example +If you execute this script it is going to print out your name. +``` +#!/usr/bin/env bash +NAME="John" +echo "Hello $NAME!" +``` + ### More Information: * [Wikipedia - Bash](https://en.wikipedia.org/wiki/Bash_(Unix_shell))