Tightens keyword formatting (ok/FAIL/hint/etc.) from two spaces to one. Makes config key suggestions more generous: normalises spaces to underscores, matches against leaf segments, and uses substring matching. Updates all golden files.
12 lines
347 B
XML
12 lines
347 B
XML
# Remove deduplicates positional args and glob matches
|
|
$ pda set foo@rdd 1
|
|
$ pda set bar@rdd 2
|
|
$ pda ls rdd --format tsv
|
|
Key Store Value TTL
|
|
bar rdd 2 no expiry
|
|
foo rdd 1 no expiry
|
|
$ pda rm foo@rdd --key "*@rdd" -y
|
|
$ pda get bar@rdd --> FAIL
|
|
FAIL cannot get 'bar@rdd': no such key
|
|
$ pda get foo@rdd --> FAIL
|
|
FAIL cannot get 'foo@rdd': no such key
|