From fb7575898691a4c8c386632ac8cabf76c863cdfe Mon Sep 17 00:00:00 2001 From: lew Date: Wed, 11 Feb 2026 02:13:32 +0000 Subject: [PATCH] docs: updates messaging in README --- README.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 80ce116..1a733da 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,8 @@ pda rm kitty --glob ?og # Opt in to a confirmation prompt with --interactive/-i (or always_prompt_delete in config). pda rm kitty -i -# remove "kitty": are you sure? (y/n) +# ??? remove 'kitty'? (y/n) +# ==> y ```

@@ -215,11 +216,11 @@ pda export --glob a* ```bash # Import with an argument. pda import -f my_backup -# Restored 2 entries into @default. +# ok restored 2 entries into @default # Or from stdin. pda import < my_backup -# Restored 2 entries into @default. +# ok restored 2 entries into @default # Import only matching keys. pda import --glob a* -f my_backup @@ -329,7 +330,7 @@ pda get greeting NAME="Bob" ```bash pda set file "{{ require .FILE }}" pda get file -# Error: required value missing or empty +# FAIL cannot get 'file': ...required value is missing or empty ```

@@ -349,7 +350,7 @@ pda set level "Log level: {{ enum .LEVEL "info" "warn" "error" }}" pda get level LEVEL=info # Log level: info pda get level LEVEL=debug -# Error: invalid value "debug" (allowed: [info warn error]) +# FAIL cannot get 'level': ...invalid value 'debug', allowed: [info warn error] ```

@@ -493,7 +494,10 @@ pda ls --no-keys # cogwheel pda rm cat --glob "{mouse,[cd]og}**" -# remove: 'cat', 'mouse trap', 'dog house', 'cogwheel': are you sure? [y/n] +# ??? remove 'cat'? (y/n) +# ==> y +# ??? remove 'mouse trap'? (y/n) +# ... ```