summaryrefslogtreecommitdiffstats
path: root/play.sh
blob: 20133ad6db5e24f16f98774e48202b2d9a602830 (plain)
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