Last active
June 6, 2019 15:07
-
-
Save vlado-github/a5c1ea71240b77256a4da62b535f9b0c to your computer and use it in GitHub Desktop.
Tracer quotes for your bash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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