From a437fa87d36acd6979e249215c1110e8367bf0ac Mon Sep 17 00:00:00 2001 From: jim Date: Tue, 9 Jun 2026 15:19:51 -0500 Subject: [PATCH] Document -post and -bop commands in --help These two commands were handled by the switch but never listed in help. --help now covers every command the program accepts. Co-Authored-By: Claude Opus 4.8 --- URLNotesGrabberCORE/Program.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/URLNotesGrabberCORE/Program.cs b/URLNotesGrabberCORE/Program.cs index c1476a6..9b24be2 100644 --- a/URLNotesGrabberCORE/Program.cs +++ b/URLNotesGrabberCORE/Program.cs @@ -402,6 +402,8 @@ namespace URLNotesGrabberCORE Console.WriteLine("-test\t Calls API for given blogname and postID"); + Console.WriteLine("-post\t Traverse the input directory tree checking .txt files for corruption"); + Console.WriteLine("-posts\t For each Post in DB, write blogname to file"); Console.WriteLine("-blogs\t For each Blog in DB, write blogname to file"); @@ -412,6 +414,8 @@ namespace URLNotesGrabberCORE Console.WriteLine("-blogsO\t For each Blog in DB, write blogname to file, but limit via a passed start and stop range "); + Console.WriteLine("-bop [from] [to] [top]\t Write ALL blog names to file, limited by FROM TO TOP range arguments"); + Console.WriteLine("-replies\t Fetch and update missing reply text for all replies in database"); Console.WriteLine("-likes\t Fetch likes: initial backfill for new blogs, incremental refresh for blogs past cooldown. Optional blog name forces single-blog run.");