Bumping version

This commit is contained in:
Mike Farah
2022-03-10 13:50:53 +11:00
parent b1fee26a7f
commit 3924ed8a35
6 changed files with 9 additions and 27 deletions
-23
View File
@@ -1,23 +0,0 @@
{% hint style="warning" %}
Note that versions prior to 4.18 require the 'eval/e' command to be specified. 
`yq e <exp> <file>`
{% endhint %}
## Decode Base64
Decoded data is assumed to be a string.
Given a sample.yml file of:
```yml
V29ya3Mgd2l0aCBVVEYtMTYg8J+Yig==
```
then
```bash
yq -p=props sample.properties
```
will output
```yaml
V29ya3Mgd2l0aCBVVEYtMTYg8J+Yig: =
```