jq and yq to process yaml in my notes

for f in *.md ; do yq "{\"file\":\"$f\", \"headers\":.}" < <(sed -n '2,/^---$/ {/^---$/d; p}' $f ) ; done 

Or…

for f in *.md ; do
 sed -n '2,/^---$/ {/^---$/d; p}' "${f}" | yq "{\"file\":\"$f\", \"headers\":.}"
done 

There may be more optimal ways to organize them, but this was the first bit I liked. Need to learn more jq query syntax to be able to use it to search.

Tags

#meta

Navigation

index

tags

updated: 2023-04-20 12:50:10 -0400

generated: 2023-06-03