Created
July 9, 2021 07:52
-
-
Save AmirSoleimani/b7f83a7cfc312dc2b1a25c1ab093d146 to your computer and use it in GitHub Desktop.
World's simplest database
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.st | |
} | |
db_get () { | |
grep "^$1," database.st | sed -e "s/^$1,//" | tail -n 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment