2017-02-12 20:55:06 +00:00
|
|
|
# yaml [![Build Status](https://travis-ci.org/mikefarah/yaml.svg?branch=master)](https://travis-ci.org/mikefarah/yaml)
|
2015-10-13 10:31:02 +00:00
|
|
|
yaml is a lightweight and flexible command-line YAML processor
|
2015-09-27 03:29:20 +00:00
|
|
|
|
2015-10-13 10:31:02 +00:00
|
|
|
The aim of the project is to be the [jq](https://github.com/stedolan/jq) or sed of yaml files.
|
2015-09-27 03:29:20 +00:00
|
|
|
|
2015-11-20 10:42:45 +00:00
|
|
|
## Install
|
|
|
|
[Download latest binary](https://github.com/mikefarah/yaml/releases/latest) or alternatively:
|
|
|
|
```
|
|
|
|
go get github.com/mikefarah/yaml
|
|
|
|
```
|
|
|
|
|
2015-10-13 10:31:02 +00:00
|
|
|
## Features
|
|
|
|
- Written in portable go, so you can download a lovely dependency free binary
|
|
|
|
- Deep read a yaml file with a given path
|
|
|
|
- Update a yaml file given a path
|
|
|
|
- Update a yaml file given a script file
|
2017-04-12 11:17:54 +00:00
|
|
|
- Update creates any missing entries in the path on the fly
|
|
|
|
- Create a yaml file given a deep path and value
|
|
|
|
- Create a yaml file given a script file
|
2015-10-13 10:31:02 +00:00
|
|
|
- Convert from json to yaml
|
|
|
|
- Convert from yaml to json
|
2017-04-12 11:30:29 +00:00
|
|
|
- Pipe data in by using '-'
|
2015-09-29 00:20:31 +00:00
|
|
|
|
2017-04-13 05:44:31 +00:00
|
|
|
## [Usage](http://mikefarah.github.io/yaml/)
|
|
|
|
|
|
|
|
Check out the [documentation](http://mikefarah.github.io/yaml/) for more detailed and advanced usage.
|
|
|
|
|
|
|
|
### Read
|
2015-09-27 03:29:20 +00:00
|
|
|
```
|
2015-10-06 05:07:09 +00:00
|
|
|
yaml r <yaml file> <path>
|
2015-09-27 03:29:20 +00:00
|
|
|
```
|
|
|
|
|
2015-09-28 00:50:32 +00:00
|
|
|
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-10-06 05:07:09 +00:00
|
|
|
yaml r sample.yaml b.c
|
2015-09-27 03:29:20 +00:00
|
|
|
```
|
|
|
|
will output the value of '2'.
|
2015-09-27 03:40:09 +00:00
|
|
|
|
2015-10-05 03:41:01 +00:00
|
|
|
|
2017-04-13 05:44:31 +00:00
|
|
|
## Update
|
2017-04-12 11:17:54 +00:00
|
|
|
Existing yaml files can be updated via the write command
|
2015-10-05 23:01:33 +00:00
|
|
|
|
2015-09-29 06:29:32 +00:00
|
|
|
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
|
|
|
|
```
|
2015-10-06 00:58:51 +00:00
|
|
|
|
2017-04-13 05:44:31 +00:00
|
|
|
## Create
|
2017-04-12 11:17:54 +00:00
|
|
|
Yaml files can be created using the 'new' command. This works in the same way as the write command, but you don't pass in an existing Yaml file.
|
|
|
|
|
|
|
|
### Creating a simple yaml file
|
|
|
|
```bash
|
|
|
|
yaml n b.c cat
|
|
|
|
```
|
|
|
|
will output:
|
|
|
|
```yaml
|
|
|
|
b:
|
|
|
|
c: cat
|
|
|
|
```
|
|
|
|
|
2015-10-13 10:31:02 +00:00
|
|
|
## Converting to and from json
|
|
|
|
|
|
|
|
### Yaml2json
|
2015-10-10 23:00:22 +00:00
|
|
|
To convert output to json, use the --tojson (or -j) flag. This can be used with any command.
|
|
|
|
|
2015-10-13 10:31:02 +00:00
|
|
|
### json2yaml
|
|
|
|
To read in json, use the --fromjson (or -J) flag. This can be used with any command.
|