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