Created
November 19, 2023 01:06
-
-
Save RyanKor/7947636d8649a7380c1d061cc2d7fc44 to your computer and use it in GitHub Desktop.
simple db code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
db_set(){ | |
echo "$1,$2" >> database | |
} | |
db_get(){ | |
grep "$1^," database | sed -e "s/^$i, //" | tail -n 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment