12 lines
332 B
XML
12 lines
332 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 Value TTL
|
|
bar 2 no expiry
|
|
foo 1 no expiry
|
|
$ pda rm foo@rdd --key "*@rdd"
|
|
$ 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
|