diff --git a/src/Models/PruneOptions.cs b/src/Models/PruneOptions.cs index 58c168f..4a02ab3 100644 --- a/src/Models/PruneOptions.cs +++ b/src/Models/PruneOptions.cs @@ -33,7 +33,7 @@ public class PruneOptions /// [Option('s', "silent", Required = false, HelpText = "Disable all logging", SetName = OptionsSetName.LoggingSilent, Default = false)] public bool IsSilent { get; set; } = false; - + /// /// Disables logging /// @@ -43,13 +43,13 @@ public class PruneOptions /// /// File name prefix to use when matching archives /// - [Option('p', "prefix", Required = false, HelpText = "File name prefix to use when matching archives")] + [Option('p', "prefix", Required = false, HelpText = "File name prefix to use when matching archives. Accepts wildcards (eg. \"backup??-*\")")] public string? FilePrefix { get; set; } /// /// File extension to use when matching archives /// - [Option('e', "ext", Required = false, HelpText = "File extension to use when matching archives, i.e. img, txt, tar.gz (do not include leading dot)")] + [Option('e', "ext", Required = false, HelpText = "File extension to use when matching archives, i.e. img, txt, tar.gz (do not include leading dot). Accepts wildcards (eg. \"i*.r??\")")] public string? FileExtension { get; set; } ///