💾 Archived View for thatit.be › 2022-11-04-17-12-57.gmi captured on 2023-04-26 at 13:27:12. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-04-19)
-=-=-=-=-=-=-
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.
updated: 2023-04-20 12:50:10 -0400
generated: 2023-04-23