initial commit

This commit is contained in:
haui 2026-01-30 11:48:07 +01:00
commit 878314578a
2 changed files with 9 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
quotes.json

8
main.sh Executable file
View file

@ -0,0 +1,8 @@
#!/bin/sh
#if json quote list exist
if [ -f ./quotes.json ]; then
#echo "file exists!"
else
echo "file does not exist!"
fi