jake kara, software engineer ‣ big-todo - make virtual TODO files ░

big-todo - make virtual TODO files

I wrote a command-line utility to create a virtual TODO file by concatenating directory-level TODO files.

Documentation can be found in the GitHub repo, so I won’t reproduce it here.

The code is just one 47-line .py file. It makes use of an interesting package called glob, which handles recursively finding all of the TODO files with the following one-liner:

glob(os.path.join(parent, f"**/{basename}"))