Skip to content

Instantly share code, notes, and snippets.

@AmirSoleimani
Created July 9, 2021 07:52
Show Gist options
  • Save AmirSoleimani/b7f83a7cfc312dc2b1a25c1ab093d146 to your computer and use it in GitHub Desktop.
Save AmirSoleimani/b7f83a7cfc312dc2b1a25c1ab093d146 to your computer and use it in GitHub Desktop.
World's simplest database
#!/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