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