Find executable scripts in a directory and allow to select which one to execute
Find a file
dependabot[bot] 01cf195b9c
Composer(deps): Bump Spectre.Console from 0.43.0 to 0.44.0 in /src
Bumps [Spectre.Console](https://github.com/spectreconsole/spectre.console) from 0.43.0 to 0.44.0.
- [Release notes](https://github.com/spectreconsole/spectre.console/releases)
- [Commits](https://github.com/spectreconsole/spectre.console/compare/0.43.0...0.44.0)

---
updated-dependencies:
- dependency-name: Spectre.Console
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-06-11 15:24:24 +00:00
.github Create dependabot.yml 2022-06-11 17:24:02 +02:00
src Composer(deps): Bump Spectre.Console from 0.43.0 to 0.44.0 in /src 2022-06-11 15:24:24 +00:00
.gitignore Add publish script 2022-03-14 12:18:16 +01:00
install-as-dotnet-tool.ps1 Update README & install scripts 2022-06-10 18:31:25 +02:00
install-as-dotnet-tool.sh Update README & install scripts 2022-06-10 18:31:25 +02:00
LICENSE Initail Commit 2022-03-09 22:42:40 +01:00
README.md Update README & install scripts 2022-06-10 18:31:25 +02:00

Script Launcher

Find executable scripts in a directory and allow to select which one to execute.

Installation

As .NET CLI Tool

To be installed as a tool, you need the .NET CLI which is included in the .NET SDK

Install manually using the following commands or by using the provided installation scripts.

dotnet pack ./src -o ./nupkg
dotnet tool install -g ScriptLauncher --add-source ./nupkg --ignore-failed-sources

As a Standalone Executable

You will need the identifier of the .NET Runtime (RID) and the Target Framework Moniker (TFM) for your OS and Runtime.

# self contained: will not need the .NET runtime to function, bigger resulting size
dotnet publish -c Release --self-contained -p:PublishSingleFile=true -p:PublishTrimmed=true -f <TFM> -r <RID> -o <output-directory> ./src

# no self contained: will need the .NET runtime to be installed to function, smallest size
dotnet publish -c Release --no-self-contained -p:PublishSingleFile=true -r <RID> -o <output-directory> ./src

NOTE: The option -p:PublishTrimmed=true may produce some warnings. If so simply skip that option and the resulting executable will be larger

Usage

Usage: script-launcher [--extensions <String>] [--depth <Int32>] [--elevated] [--group] [--brief] [--help] [--version] directory

Arguments:
  0: directory    Starting directory (Default: .)

Options:
  -x, --extensions <String>    Comma separated list of script extensions
  -d, --depth <Int32>          Search depth (Default: 1)
  -e, --elevated               Run with elevated privileges
  -g, --group                  Group scripts by folder
  -b, --brief                  Show brief information
  -h, --help                   Show help message
  --version                    Show version