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