diff --git a/README.md b/README.md index ab7118b..246bb32 100644 --- a/README.md +++ b/README.md @@ -33,18 +33,19 @@ _**NOTE**_: The option `-p:PublishTrimmed=true` may produce some *warnings*. If ```sh USAGE: - scrl [OPTIONS] + scrl [path] [OPTIONS] ARGUMENTS: - Starting directory (Default: .) + [path] Starting directory (Default: .) OPTIONS: - -h, --help Prints help information - -x, --extensions Comma separated list of script extensions - -d, --depth Search depth - -e, --elevated Run with elevated privileges - -g, --group Group scripts by folder - -b, --brief Show brief information + DEFAULT + -h, --help Prints help information + -x, --extensions List of script extensions to search for + -d, --depth 3 Search depth + -e, --elevated Run with elevated privileges + -g, --group Group scripts by folder + -b, --brief Show brief information ``` [CLI]: https://docs.microsoft.com/en-us/dotnet/core/tools/ ".NET CLI Docs" diff --git a/src/Commands.cs b/src/Commands.cs index 4be0a59..ed0b950 100644 --- a/src/Commands.cs +++ b/src/Commands.cs @@ -1,5 +1,5 @@ using System.ComponentModel; - +using System.Diagnostics.CodeAnalysis; using Spectre.Console; using Spectre.Console.Cli; @@ -76,27 +76,30 @@ public sealed class RootCommand : AsyncCommand public sealed class RootCommandSettings : CommandSettings { - [Description("Comma separated list of script extensions")] - [CommandOption("-x|--extensions")] - public string? Extensions { get; init; } + [Description("List of script extensions to search for")] + [CommandOption("-x|--extensions ")] + [SuppressMessage("Performance", "CA1819:Properties should not return arrays")] + public string[] Extensions { get; init; } = [".ps1", ".*sh", ".bat", ".cmd", ".nu"]; [Description("Search depth")] [CommandOption("-d|--depth")] - public int Depth { get; init; } = 1; + [DefaultValue(3)] + public int Depth { get; init; } [Description("Run with elevated privileges")] [CommandOption("-e|--elevated")] - public bool Elevated { get; init; } = false; + public bool Elevated { get; init; } [Description("Group scripts by folder")] [CommandOption("-g|--group")] - public bool Group { get; init; } = false; + public bool Group { get; init; } [Description("Show brief information")] [CommandOption("-b|--brief")] - public bool Brief { get; init; } = false; + public bool Brief { get; init; } [Description("Starting directory (Default: .)")] - [CommandArgument(0, "")] - public string Directory { get; init; } = "."; -} \ No newline at end of file + [CommandArgument(0, "[path]")] + [DefaultValue(".")] + public string Directory { get; init; } = string.Empty; +} diff --git a/src/Program.cs b/src/Program.cs index f53f375..e57668c 100644 --- a/src/Program.cs +++ b/src/Program.cs @@ -2,5 +2,9 @@ using ScriptLauncher; using Spectre.Console.Cli; var app = new CommandApp(); -app.Configure(x => x.SetApplicationName("scrl")); +app.Configure(x => +{ + x.SetApplicationName("scrl"); +}); + return app.Run(args); diff --git a/src/ScriptFinder.cs b/src/ScriptFinder.cs index 14554bf..618701d 100644 --- a/src/ScriptFinder.cs +++ b/src/ScriptFinder.cs @@ -2,23 +2,15 @@ namespace ScriptLauncher; internal readonly struct ScriptFinder { - private static readonly string[] DefaultExtensions = new[] { ".ps1", ".*sh", ".bat", ".cmd", ".nu" }; - private static readonly char[] DefaultSeparators = new[] { ',', ' ' }; - - public string[] Extensions { get; } + public IEnumerable Extensions { get; } public string RootDirectory { get; } - public int Depth { get; } + private int Depth { get; } private readonly EnumerationOptions _options; - public ScriptFinder(string? extensions, string directory, int depth) + public ScriptFinder(IEnumerable extensions, string directory, int depth) { - Extensions = - extensions - ?.Split(DefaultSeparators, StringSplitOptions.RemoveEmptyEntries) - .ToHashSet() - .Select(x => $".{x.TrimStart('.')}") - .ToArray() ?? DefaultExtensions; + Extensions = extensions.ToHashSet().Select(x => $".{x.TrimStart('.')}"); Depth = depth; RootDirectory = directory; diff --git a/src/ScriptLauncher.csproj b/src/ScriptLauncher.csproj index 3bb83d8..8cc0034 100644 --- a/src/ScriptLauncher.csproj +++ b/src/ScriptLauncher.csproj @@ -6,7 +6,7 @@ enable enable All - 0.1.6 + 0.1.7 true Tool to find and exec shell scripts README.md