> For the complete documentation index, see [llms.txt](https://daseldocs.tomwright.me/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://daseldocs.tomwright.me/v2/examples/basics.md).

# Basics

## Select

```
$ echo '{"name":"Tom"}' | dasel -r json 'name'
"Tom"
```

## Put

```
$ echo '{"name":"Tom"}' | 
  dasel put -r json -t string -v 'contact@tomwright.me' 'email'
{
  "email": "contact@tomwright.me",
  "name": "Tom"
}
```

## Delete

```
$ echo '{
  "email": "contact@tomwright.me",
  "name": "Tom"
}' | dasel delete -r json 'email'
{
  "name": "Tom"
}
```
