personal digital assistant! A key/value store tool for the command line with rich template support, written in Go.
Find a file
2025-11-20 19:51:46 +00:00
.github/workflows bump Go version in CI 2025-11-20 18:35:42 +00:00
cmd refactor(delete-db): default cmd set to del-db 2025-11-20 14:39:33 +00:00
docs feat(docs): remove cmds.png 2025-11-20 19:15:45 +00:00
testdata build(testdata): final tweaks to testdata for gh actions environment. should be agnostic now and work with any shell. 2025-11-20 19:04:44 +00:00
vhs feat(VHS): for demos 2025-11-20 19:51:46 +00:00
.gitignore build(gitignore): adds .gocache and .build 2025-11-06 22:39:31 +00:00
go.mod fix(testdata): makes tests shell-agnostic 2025-11-20 18:45:14 +00:00
go.sum fix(testdata): makes tests shell-agnostic 2025-11-20 18:45:14 +00:00
LICENSE feat(init): initial commit 2025-11-06 15:00:18 +00:00
main.go feat(init): initial commit 2025-11-06 15:00:18 +00:00
main_test.go fix(cmdtest): create binary in /tmp 2025-11-20 15:41:31 +00:00
README.md Update README with installation instructions 2025-11-20 19:19:01 +00:00

pda

# Get the latest release from the AUR
pacman -S pda

# Or use pda-git for the latest commit
pacman -S pda-git

# Or manually install with Go
git clone https://github.com/llywelwyn/pda
cd pda
go install

Available Commands:
  get         # Get a value.
  set         # Set a value.
  del         # Delete a value.
  del-db      # Delete a whole database.
  list-dbs    # List all databases.
  dump        # Export a database as NDJSON.
  restore     # Imports NDJSON into a database.
  completion  # Generate autocompletions for a specified shell.
  help        # Additional help for any command.