diff options
author | Rasmus <rasmus.luha@gmail.com> | 2023-04-08 00:27:03 +0300 |
---|---|---|
committer | Rasmus <rasmus.luha@gmail.com> | 2023-04-08 00:27:03 +0300 |
commit | a16bdfe930d89e1a7fb354b78d16e8742118f76d (patch) | |
tree | f32aabd929a485ac24ea2b3fb1c9c9d041f27478 /local/.local/scripts/quotes |
checkers
Diffstat (limited to 'local/.local/scripts/quotes')
-rwxr-xr-x | local/.local/scripts/quotes | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/local/.local/scripts/quotes b/local/.local/scripts/quotes new file mode 100755 index 0000000..2009c64 --- /dev/null +++ b/local/.local/scripts/quotes @@ -0,0 +1,7 @@ +#! /bin/bash + +SRC_FILE=~/.local/scripts/data/bigBoiQuotes.dat +RIDA=$(shuf -i 1-$[$(cat $SRC_FILE | wc -l)/4] | head -n1 ) +QUOTE=$(sed -n $[2*${RIDA}+1]p $SRC_FILE) +QUOTIST=$(sed -n $[2*${RIDA}+2]p $SRC_FILE) +echo $QUOTE $QUOTIST |