Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evilmarty/ilc
A simple way to create a command-line utility
https://github.com/evilmarty/ilc
cli config go golang homebrew utility
Last synced: 15 days ago
JSON representation
A simple way to create a command-line utility
- Host: GitHub
- URL: https://github.com/evilmarty/ilc
- Owner: evilmarty
- License: gpl-3.0
- Created: 2022-04-26T09:17:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-03T23:21:58.000Z (5 months ago)
- Last Synced: 2024-08-04T00:23:59.050Z (5 months ago)
- Topics: cli, config, go, golang, homebrew, utility
- Language: Go
- Homepage:
- Size: 195 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
![ILC](assets/logo.svg)
# The simple way to create a command-line utility
[![CI](https://github.com/evilmarty/ilc/actions/workflows/ci.yml/badge.svg)](https://github.com/evilmarty/ilc/actions/workflows/ci.yml) [![GitHub Release](https://img.shields.io/github/v/release/evilmarty/ilc)](https://github.com/evilmarty/ilc/releases/latest) ![GitHub License](https://img.shields.io/github/license/evilmarty/ilc)
Create an easy to use interactive CLI to simplify your workflow with a single
YAML file.## Installation
### Homebrew
To install via [Homebrew](https://brew.sh) just run the following command:
```shell
brew install --cask evilmarty/ilc/ilc
```### Golang
Ensure you have [Go](https://go.dev) installed then run the follow:
```shell
go install github.com/evilmarty/ilc
```### Manual
Binaries are available to download. Get the [latest release](https://github.com/evilmarty/ilc/releases/latest) binary for your platform.
## Usage
The usage is as followed:
```shell
ilc [--version] [--debug] CONFIG [COMMAND ...] [INPUT ...]
````CONFIG` is the path to your config file.
`COMMAND` is one or a cascade of subcommands defined in the config file.
`INPUT` is one or many inputs inherited by the command.
The best way to use `ilc` is to include it in the shebang of your config, like so:
```yaml
#!/usr/bin/env ilc
```### Commands
If the configuration has defined `commands` they can either be passed as
arguments or an interactive prompt will allow you to choose a command. If the
command specified in the arguments has itself subcommands the interactive
prompt will appear to complete the selection process.### Inputs
After a command is specified or selected an interactive prompt will ask for
input before the command will be executed. Inputs can be passed as arguments or
as environment variables that are prefixed with `ILC_INPUT_`. Inputs that have
been passed as arguments will not be asked, only for the inputs that have yet a value.All inputs will also be accessible via environment variables prefixed with `ILC_INPUT_`.
#### Example of passing inputs as arguments
```shell
ilc example/ilc.yaml calendar -month feb
```#### Example of passing inputs via environment variables
```shell
export ILC_INPUT_month=feb
ilc example/ilc.yaml calendar
```## Config
### `description`
The overall description of what is the config's purpose. Is optional.
### `env`
Optionally set environment variables for the command. Cascades to descending
commands and subcommands. Expressions can be used in values.### `shell`
The shell to run the command in. Must be in JSON array format. Defaults to `["/bin/sh"]`.
### `run`
Runs command-line programs using the specified shell. If `commands` is also
defined then `run` cannot be invoked directly and becomes a template accessible
to all nested commands. See [Templating](#templating) for more information.### `pure`
Setting `pure` to `true` to not pass through environment variables and only use
environment variables that have been specified or inherited. Subcommands do not
inherit this option and must be set for each command.### `inputs`
Optionally specify inputs to be used in `run` and `env` values. Inputs can be
passed as arguments or will be asked when invoking a command. Nested commands
inherit inputs and cascade down.### `inputs.`
The key `input_name` is a string and its value is a map of the input's
configuration. The name can be used as an argument in the form `-`
or `--` followed by a value. The input's value is a string.### `inputs..description`
Optionally describe the input's purpose or outcome.
### `inputs..options`
Limit the value to a list of acceptable values. Options can be a list of values
or a map, with the keys presented as labels and the corresponding values the
resulting value.#### Example of option types
- A list of options:
```yaml
inputs:
month:
options:
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December
```- A map of options:
```yaml
inputs:
city:
options:
Brisbane: bne
Melbourne: mlb
Sydney: syd
```### `inputs..pattern`
A regex pattern to validate the input's value. Default is to allow any input.
#### Example setting an input pattern
```yaml
inputs:
year:
pattern: "(19|20)[0-9]{2}"
```### `inputs..default`
Set the default value for the input. It is overwritten when a value is given as
an argument or changed when prompted. If a default value is not defined then a
value is required.### `commands`
The commands defined are then available to be invoked from the command line
either by passing arguments or by interactive selection. Must define at least
one command.### `commands.`
Use `commands.` to give your command a unique name. The key
`command_name` is a string and its value is a map of the command's configuration
data. A string value can be used as a shorthand for the `run` attribute.#### Example defining an inline command
```yaml
commands:
calendar: cal
```### `commands..description`
Optionally describe the command's purpose or outcome.
### `commands..run`
See [`run`](#run) for more information.
### `commands..commands`
Define sub-commands in the same structure as `commands`. All `inputs` or `env`
defined cascade to all sub-commands. Cannot be used in conjunction with `run`.### `commands..env`
Optionally set environment variables for the command. Cascades to descending
commands and subcommands. See [Templating](#templating) for more information.#### Example of templating an environment variable
```yaml
commands:
greet:
env:
NAME: "{{ .Input.name }}"
GREETING: Hello
```### `commands..pure`
Setting `pure` to `true` to not pass through environment variables and only use
environment variables that have been specified or inherited. Subcommands do not
inherit this option and must be set for each command.### `commands..inputs`
Optionally specify inputs to be used in `run` and `env` values. Inputs can be
passed as arguments or will be asked when invoking a command. Nested commands
inherit inputs and cascade down. See [`inputs`](#inputs-1) for more information.### `commands..aliases`
Optionally include additional aliases to reference the command. Aliases must be
unique within the same parent.#### Example of defining aliases
```yaml
commands:
files:
commands:
list:
aliases:
- ls
run: ls -lf
directories:
aliases:
- dir
commands:
list:
aliases:
- ls
run: ls -ld
```## Templating
Go's [template language](https://pkg.go.dev/text/template) is available for
`run` and `env` values to construct complex entries. Templates are evaluated
after inputs are collected but before script execution. Along with inputs,
templates can access environment variables that are present and regardless
whether `pure` is enabled or not.Nested commands can include the run scripts from their parent commands.
ie. `{{template ""}}`### .Input.
The expression to reference an input value. ie. '{{ .Input.my_input }}'
### .Env.
The expression to reference an environment variable. ie. '{{ .Env.HOME }}'
### input "input_name"
A function to retrieve the input by its name. ie. '{{input "my_input"}}'
### env "variable_name"
A function to retrieve the environment variable by its name. ie. '{{env "HOME"}}'
## Example config with single command
```yaml
description: Display a calendar for the month
inputs:
month:
options:
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December
run: cal -m {{ .Input.month }}
```## Example config with commands
```yaml
description: My awesome CLI
commands:
weather:
description: Show the current weather forecast
run: curl wttr.in?0QF
calendar:
description: Display a calendar for the month
inputs:
month:
options:
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December
run: cal -m {{ .Input.month }}
greet:
description: Give a greeting
inputs:
name:
default: World
greeting:
options:
- Hello
- Hi
- G'day
run: echo $GREETING $NAME
env:
NAME: "{{ .Input.name }}"
GREETING: "{{ .Input.greeting }}"
```