2015-09-26 22:14:44 +00:00
|
|
|
# yaml
|
2015-10-04 06:07:39 +00:00
|
|
|
yaml is portable command line tool written in go
|
2015-09-27 03:29:20 +00:00
|
|
|
|
2015-10-05 03:48:57 +00:00
|
|
|
Allows you to read and update yaml files from bash (or whatever). All in a lovely dependency free binary!
|
2015-09-27 03:29:20 +00:00
|
|
|
|
2015-09-29 00:20:31 +00:00
|
|
|
[Download latest release](https://github.com/mikefarah/yaml/releases/latest)
|
|
|
|
|
|
|
|
or alternatively install using go get:
|
2015-09-27 05:06:02 +00:00
|
|
|
```
|
|
|
|
go get github.com/mikefarah/yaml
|
|
|
|
```
|
|
|
|
|
2015-09-28 00:50:32 +00:00
|
|
|
## Read examples
|
2015-09-27 03:29:20 +00:00
|
|
|
```
|
|
|
|
yaml <yaml file> <path>
|
|
|
|
```
|
|
|
|
|
2015-09-28 00:50:32 +00:00
|
|
|
### Basic
|
|
|
|
Given a sample.yaml file of:
|
|
|
|
```yaml
|
|
|
|
b:
|
|
|
|
c: 2
|
2015-09-27 03:29:20 +00:00
|
|
|
```
|
2015-09-28 00:50:32 +00:00
|
|
|
then
|
|
|
|
```bash
|
2015-09-27 03:29:20 +00:00
|
|
|
yaml sample.yaml b.c
|
|
|
|
```
|
|
|
|
will output the value of '2'.
|
2015-09-27 03:40:09 +00:00
|
|
|
|
2015-10-05 04:48:34 +00:00
|
|
|
### Reading from STDIN
|
|
|
|
Given a sample.yaml file of:
|
|
|
|
cat sample.yaml | yaml - b.c
|
|
|
|
```
|
|
|
|
will output the value of '2'.
|
|
|
|
|
2015-10-03 05:10:29 +00:00
|
|
|
### Handling '.' in the yaml key
|
|
|
|
Given a sample.yaml file of:
|
|
|
|
```yaml
|
|
|
|
b.x:
|
|
|
|
c: 2
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yaml sample.yaml \"b.x\".c
|
|
|
|
```
|
|
|
|
will output the value of '2'.
|
|
|
|
|
2015-09-28 00:50:32 +00:00
|
|
|
### Arrays
|
|
|
|
You can give an index to access a specific element:
|
|
|
|
e.g.: given a sample file of
|
|
|
|
```yaml
|
2015-09-27 03:40:09 +00:00
|
|
|
b:
|
|
|
|
e:
|
|
|
|
- name: fred
|
|
|
|
value: 3
|
|
|
|
- name: sam
|
|
|
|
value: 4
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```
|
2015-10-03 05:10:29 +00:00
|
|
|
yaml sample.yaml b.e[1].name
|
2015-09-27 03:40:09 +00:00
|
|
|
```
|
|
|
|
will output 'sam'
|
2015-09-28 00:50:32 +00:00
|
|
|
|
2015-10-05 03:41:01 +00:00
|
|
|
#### Array Splat
|
|
|
|
e.g.: given a sample file of
|
|
|
|
```yaml
|
|
|
|
b:
|
|
|
|
e:
|
|
|
|
- name: fred
|
|
|
|
value: 3
|
|
|
|
- name: sam
|
|
|
|
value: 4
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```
|
|
|
|
yaml sample.yaml b.e[*].name
|
|
|
|
```
|
|
|
|
will output:
|
|
|
|
```
|
|
|
|
- fred
|
|
|
|
- sam
|
|
|
|
```
|
|
|
|
|
2015-09-29 06:29:32 +00:00
|
|
|
### Updating yaml
|
|
|
|
Given a sample.yaml file of:
|
|
|
|
```yaml
|
|
|
|
b:
|
|
|
|
c: 2
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
2015-10-03 08:19:13 +00:00
|
|
|
yaml w sample.yaml b.c cat
|
2015-09-29 06:29:32 +00:00
|
|
|
```
|
|
|
|
will output:
|
|
|
|
```yaml
|
|
|
|
b:
|
|
|
|
c: cat
|
|
|
|
```
|