From 796e4b2db9bfc9cace508ca6b09b2b7b2724f12b Mon Sep 17 00:00:00 2001 From: lew <82828093+Llywelwyn@users.noreply.github.com> Date: Thu, 20 Nov 2025 19:19:01 +0000 Subject: [PATCH] Update README with installation instructions Added installation instructions for AUR and Go. --- README.md | 37 ++++++++++++++++++++++++++----------- 1 file changed, 26 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 35d5cde..72207b5 100644 --- a/README.md +++ b/README.md @@ -18,17 +18,32 @@
- ```bash -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. +```bash +# 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 +``` + + + + ```bash +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. ```