mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-05 17:44:33 +00:00
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# yek
|
|
|
|
> Serialize a repository or directory into an LLM-friendly single file (fast Rust-based repomapper).
|
|
> More information: <https://github.com/bodo-run/yek#usage>.
|
|
|
|
- Serialize the current directory and write the output to a temp file (prints path):
|
|
|
|
`yek`
|
|
|
|
- Serialize specific directories and write output to a directory:
|
|
|
|
`yek {{path/to/directory1 path/to/directory2 ...}} --output-dir {{path/to/output_directory}}`
|
|
|
|
- Process multiple files or use glob patterns (quote globs to avoid shell expansion):
|
|
|
|
`yek "{{path/to/directory/**/*.rs}}" "{{path/to/directory/**/*.md}}"`
|
|
|
|
- Cap the token-based output size to 128k tokens:
|
|
|
|
`yek {{path/to/directory}} --tokens 128k`
|
|
|
|
- Cap the byte-based max output size and set an explicit output file name:
|
|
|
|
`yek {{path/to/directory}} --max-size {{100KB}} --output-name {{yek-output.txt}}`
|
|
|
|
- Stream JSON output:
|
|
|
|
`yek {{path/to/directory}} --json`
|
|
|
|
- Include a directory tree header in the output:
|
|
|
|
`yek {{path/to/directory}} --tree-header`
|