#!/bin/bash if [[ $1 = "bro" ]]; then echo "you are a bro, bro!" elif [[ -z $1 ]]; then echo "you are a bitch" else echo "you still are a bitch" fi if [[ x$1 = x ]]; then echo "try your luck with arg1 next time" fi