Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Models/PruneOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class PruneOptions
/// </summary>
[Option('s', "silent", Required = false, HelpText = "Disable all logging", SetName = OptionsSetName.LoggingSilent, Default = false)]
public bool IsSilent { get; set; } = false;

/// <summary>
/// Disables logging
/// </summary>
Expand All @@ -43,13 +43,13 @@ public class PruneOptions
/// <summary>
/// File name prefix to use when matching archives
/// </summary>
[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; }

/// <summary>
/// File extension to use when matching archives
/// </summary>
[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; }

/// <summary>
Expand Down