for when you have little ones and you need to make a big one
Find a file
2026-05-14 09:16:30 -04:00
README.md readme 2026-05-14 09:16:30 -04:00

The Big One, Generator

Tired of NotebookLM's pesky file limit? Look no further.

Instructions

  1. Navigate to the root directory of your notes.
  2. 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
}