Skip to content

Instantly share code, notes, and snippets.

@danslimmon
Created March 24, 2014 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save danslimmon/9743071 to your computer and use it in GitHub Desktop.
Save danslimmon/9743071 to your computer and use it in GitHub Desktop.
# Says something comforting
function comfort() {
messages[0]="I hear you."
messages[1]="I'm sorry. That's a bummer."
messages[2]="That blows."
messages[3]="Ouch. Okay, let's take a deep breath together."
messages[4]="Damn. Sounds like you're having a rough day."
messages[5]="Hey, we'll get through this together."
messages[6]="Aw man."
ind=$[$RANDOM % ${#messages[@]}]
echo ${messages[$ind]}
}
alias fuck=comfort
alias fuuck=comfort
alias fuuuck=comfort
alias fuuuuck=comfort
alias fml=comfort
alias shit=comfort
alias goddammit=comfort
alias ugh=comfort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment