12 lines
349 B
XML
12 lines
349 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
|