mirror of
https://github.com/mikefarah/yq.git
synced 2025-02-05 17:28:26 +00:00
22 lines
293 B
Markdown
22 lines
293 B
Markdown
|
|
## Read boolean environment variable as a string
|
|
Running
|
|
```bash
|
|
myenv="true" yq eval --null-input 'strenv(myenv)'
|
|
```
|
|
will output
|
|
```yaml
|
|
12
|
|
```
|
|
|
|
## Read numeric environment variable as a string
|
|
Running
|
|
```bash
|
|
myenv="12" yq eval --null-input 'strenv(myenv)'
|
|
```
|
|
will output
|
|
```yaml
|
|
12
|
|
```
|
|
|