From 87b7ef4fdf22b6fe0ff07fbb68b16eab5aa19ca4 Mon Sep 17 00:00:00 2001 From: mgiuntoni Date: Wed, 28 Aug 2024 23:39:20 +0200 Subject: [PATCH] Changed readme.md --- Program.cs | 8 ++++---- README.md | 4 ++++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Program.cs b/Program.cs index 78c9bdc..e65235f 100644 --- a/Program.cs +++ b/Program.cs @@ -77,19 +77,19 @@ namespace ComicCompressor [Option("-p|--parallel", Description = "Run in parallel, utilizing all computing resources")] public bool IsParallel { get; } = false; - [Option("-c|--cpu", Description = "Run in parallel, utilizing given computing resources")] + [Option("-c|--cpu", Description = "Run in parallel, use given number of CPUs")] public int NumOfCpu { get; } = Environment.ProcessorCount; - [Option("-d|--pdf", Description = "process pdf only")] + [Option("-d|--pdf", Description = "Process pdf only")] public bool DoPdf { get; } = false; - [Option("-j|--image", Description = "process images only")] + [Option("-j|--image", Description = "Process images only")] public bool DoImage { get; } = false; [Option("-n|--prn", Description = "Process Zebra PRN files, generate png and webp from jpeg in base64 URI format")] public bool DoPrn { get; } = false; - [Option("-a|--copyall", Description = "copy all unprocessed files")] + [Option("-a|--copyall", Description = "Copy all unprocessed files")] public bool DoCopyAll { get; } = false; #endregion diff --git a/README.md b/README.md index 779c5a3..adb27e0 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,10 @@ Run `dotnet run -- [args]` -s|--skip Skip processing file if it already exists in the output folder -q|--quality Quality to use for the webp files (default: 75) -p|--parallel Run in parallel, utilizing all computing resources + -c|--cpu Run in parallel, utilizing all computing resources + -d|--pdf Process PDF + -n|--prn Process Zebra PRN files, generate png and webp from jpeg in base64 URI format + -a|--copyall Copy all unprocessed files -?|-h|--help Show help information ```