12 lines
355 B
XML
12 lines
355 B
XML
# Remove deduplicates positional args and glob matches
|
|
$ pda set foo@rdd 1
|
|
$ pda set bar@rdd 2
|
|
$ pda ls rdd --format tsv
|
|
Meta Size TTL Store Key Value
|
|
-w-- 1 - rdd bar 2
|
|
-w-- 1 - rdd foo 1
|
|
$ 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
|