Skip to content

Instantly share code, notes, and snippets.

@vlado-github
Last active June 6, 2019 15:07
Show Gist options
  • Save vlado-github/a5c1ea71240b77256a4da62b535f9b0c to your computer and use it in GitHub Desktop.
Save vlado-github/a5c1ea71240b77256a4da62b535f9b0c to your computer and use it in GitHub Desktop.
Tracer quotes for your bash
#!/bin/bash
arr[0]="Well, that just happened."
arr[1]="Aw, rubbish."
arr[2]="And she's back in the race!"
arr[3]="Oi! This is no time for standin' around."
arr[4]="Looks like you need a time out."
arr[5]="Cheers, love! The cavalry's here!"
arr[6]="Ever get that feeling of déjà vu?"
arr[7]="Keep calm and Tracer on!"
arr[8]="The world could always use more heroes."
rand=$[ $RANDOM % 9 ]
echo \"${arr[$rand]}\"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment