#!/bin/sh
#if json quote list exist
if [ -f "./quotes.txt" ]; then
shuf -n 1 ./quotes.txt
else
echo "file does not exist!"
fi