1
0
mirror of https://github.com/TomWright/dasel.git synced 2022-05-22 02:32:45 +03:00

Add a data conversion example to the readme

This commit is contained in:
Tom Wright
2021-08-14 14:03:39 +01:00
parent 204ce62383
commit 74f4500df1

View File

@@ -59,6 +59,15 @@ echo '{"name": "Tom"}' | dasel -r json '.name'
See [select documentation](https://daseldocs.tomwright.me/usage/select).
### Convert json to yaml
```bash
echo '{"name": "Tom"}' | dasel -r json -w yaml
name: Tom
```
See [select documentation](https://daseldocs.tomwright.me/usage/select).
### Put
```bash