10 lines
207 B
XML
10 lines
207 B
XML
$ pda set foo 1
|
|
$ pda set bar 2
|
|
$ pda ls
|
|
bar 2
|
|
foo 1
|
|
$ pda del foo --glob "*"
|
|
$ pda get bar --> FAIL
|
|
Error: cannot get 'bar': Key not found
|
|
$ pda get foo --> FAIL
|
|
Error: cannot get 'foo': Key not found
|