#!/usr/bin/env bash # Bad spacing and indentation function hello( ) { echo "hello world" } if [[ -n "$1" ]];then echo "You said: $1" else echo "You said nothing" fi hello "$1"