Skip to content

Instantly share code, notes, and snippets.

@ichux
Created June 18, 2025 19:12
Show Gist options
  • Save ichux/01812d8f7d07af85a104c11828181b56 to your computer and use it in GitHub Desktop.
Save ichux/01812d8f7d07af85a104c11828181b56 to your computer and use it in GitHub Desktop.
#!/bin/bash
db_set(){
echo "$1,$2" >> database
}
db_get(){
grep "^$1," database | sed -e "s/^$1,//" | tail -n 1
}
# . adb.sh
# db_set i '{"a":1}'
# db_get i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment