Scripture — CLI Reference

Terminal-first scripture reading across three languages. Grep, paste, and awk your way through 85,414 verses. Study content lives in the domus-scripture spoke (pending deployment); this codex covers the CLI workflow.

Topics

Topic Description

Terminal Reading

Single verse, parallel, chapter, cross-lingual lookup, concordance, word frequency

Corpus Inventory

Sources, formats, file locations, Torah mapping, conversion provenance

Spoke Architecture

domus-scripture generation, build, deployment, cross-component xrefs

Quick Reference

Single verse — three languages
grep 'Genesis 1:1 ' "$KJV/kjv_complete.txt"
grep 'Génesis 1:1 ' "$RV/biblia_rv1909_completa.txt"
grep 'בְּרֵאשִׁית 1:1 ' "$WLC/tanakh_completa.txt"
Trilingual parallel
paste <(grep 'Genesis 1:1 ' "$KJV/kjv_complete.txt") \
      <(grep 'Génesis 1:1 ' "$RV/biblia_rv1909_completa.txt") \
      <(grep 'בְּרֵאשִׁית 1:1 ' "$WLC/tanakh_completa.txt")
Word frequency
awk '{for(i=3;i<=NF;i++) w[$i]++} END{for(k in w) print w[k],k}' \
    "$KJV/Old_Testament/01_Genesis/Genesis.txt" | sort -rn | head -10

See Also

  • La Reina Valera — study spoke (pending: domus-scripture)

  • King James Version — study spoke (pending: domus-scripture)

  • Tanakh — study spoke (pending: domus-scripture)

  • PRJ-BIBLIOTHECA — project governance