peliprint/blueprint/lib/db.sh

17 lines
461 B
Bash
Raw Normal View History

2023-03-19 16:00:37 -04:00
#!/bin/bash
2023-06-17 07:24:35 -04:00
#
# This script has been created as part of the Blueprint source code
# and may be intergrated directly into the core in the future.
2023-03-19 16:00:37 -04:00
FLDR=$BLUEPRINT__FOLDER"/.blueprint/extensions/blueprint/private/db/database"
2023-11-20 17:47:10 -05:00
# dbAdd "database.record"
dbAdd() { echo "* ${1};" >> $FLDR }
# dbValidate "database.record"
dbValidate() { grep -Fxq "* ${1};" $FLDR > /dev/null }
# dbRemove "database.record"
dbRemove() { sed -i "s/* ${1};//g" $FLDR > /dev/null }