1 2 3 4 5 6 7 8 9 10 11 12 13 14
#!/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