#!/bin/bash
VAR="world"
echo "Hello $VAR!" # => Hello world!

Execute the script

$ bash hello.sh
Comments