Created
February 4, 2026 15:17
-
-
Save ayorgo/5ab5df0ec3c0b1a367b0e30b1073d247 to your computer and use it in GitHub Desktop.
Concatenate source code files recursively into a Markdown summary
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for file in $(fd -g '*.py' my_python_project_dir); do echo -e '#' "$file"'\n```python\n' "$(cat $file)" '\n```\n'; done > context.md |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment