Files
proxmark3/client
Jean-Michel Picod 3b7cec365a Support double-quoted arguments in CLI
When a quoted command argument is seen, it will take all characters
until the next double-quote (no supported escape sequence here for
simplicity).
All white spaces (space, tab, etc.) are then removed from the argument.

This means that the following command should behave the same:
```
pm3> wiegand encode --fc 101 --cn 1337
pm3> wiegand encode --fc "1 0 1" --cn "1    3    3   7"
```

Or a more useful example, when copy/pasting hex formatted values:
```
pm3> hf iclass calcnewkey --old 1122334455667788 --new 2233445566778899
pm3> hf iclass calcnewkey --old "11 22 33 44 55 66 77 88" --new "22 33 44 55 66 77 88 99"
```
2023-10-18 10:27:12 +02:00
..
2023-10-16 10:14:38 +02:00
2023-10-16 01:52:27 +08:00
2023-10-15 17:14:56 +02:00
2023-10-17 22:48:12 +08:00
2023-09-16 09:31:42 +02:00
2023-10-16 01:52:27 +08:00
2022-01-14 21:22:26 +01:00
2023-10-16 01:52:27 +08:00
2023-06-02 10:45:04 +02:00