for when you have little ones and you need to make a big one
| README.md | ||
The Big One, Generator
Tired of NotebookLM's pesky file limit? Look no further.
Instructions
- Navigate to the root directory of your notes.
- Copy and paste ts
$target = "./TheBigOne.md"
$files = Get-ChildItem -Path "." -Filter *.md -Recurse -File | Select-Object -ExpandProperty FullName
foreach ($filename in $files) {
$text = gc -Path $filename -Raw
$text | Out-File -FilePath $target -Append -Encoding utf8
"`n" | Out-File -FilePath $target -Append -Encoding utf8
}