Repository
Current version released
2 years ago
RunRC
Configurable per-directory command aliases and scripts
Installation
deno install -A -n runrc -f https://deno.land/x/runrc/src/main.tsUsage
RunRC allows the configuration of custom, parameterised commands, per directory. To get started, run:
runrc initThis will create a .runrc file in the current working directory. This will
contain an example configuration, which you can edit as needed.
The example configuration generated by init contains a hello command. You
can run it like this:
runrc hello WorldHello World!Templating
You can use the following templating expressions:
{#}- number of arguments{1}- first argument{-1}- last argument{..}- all arguments{1..}- all arguments after the first{..2}- all arguments up to the second{1..3}- arguments 2 to 4