Skip to content

Instantly share code, notes, and snippets.

@shaal
Created November 12, 2019 21:47
Show Gist options
  • Save shaal/63dd20c00475631680c90d473a0ab017 to your computer and use it in GitHub Desktop.
Save shaal/63dd20c00475631680c90d473a0ab017 to your computer and use it in GitHub Desktop.
Convert all JSON files to YML in current tree
#!/bin/bash
#
# Convert JSON files to YML in current tree
#
shopt -s globstar
for file in **/*.json; do
yq r "$file" > "${file%.json}.yml";
rm "$file";
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment