diff --git a/quote-get b/quote-get index 09ae65c..ef7ffde 100755 --- a/quote-get +++ b/quote-get @@ -43,7 +43,7 @@ fi quote_count=$(cat "${quotes_cache_file}" | wc -l); # Set the random number generator seed to ensure we give the same quote on a per-day basis -RANDOM=$(date +%Y-%m-%d); +RANDOM=$(date +%Y%m%d); quote_line=$((( $RANDOM % ${quote_count} )));