mirror of
https://github.com/mikefarah/yq.git
synced 2025-01-30 02:55:40 +00: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