mirror of
https://github.com/taigrr/yq
synced 2025-01-18 04:53:17 -08:00
183 B
183 B
Join strings
Given a sample.yml file of:
- cat
- meow
- 1
- null
- true
then
yq eval 'join("; ")' sample.yml
will output
cat; meow; 1; ; true