mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-14 07:08:06 +00:00
15 lines
453 B
Markdown
15 lines
453 B
Markdown
# Load
|
|
|
|
The `load`/`strload` operator allows you to load in content from another file referenced in your yaml document.
|
|
|
|
Note that you can use string operators like `+` and `sub` to modify the value in the yaml file to a path that exists in your system.
|
|
|
|
Use `strload` to load text based content as a string block, and `load` to interpret the file as yaml.
|
|
|
|
Lets say there is a file `../../examples/thing.yml`:
|
|
|
|
```yaml
|
|
a: apple is included
|
|
b: cool
|
|
```
|