# runner

A collection of tools capable of executing complex commands through their abbreviation.

## Quick Start

### Install

```shell
npm install -g @qigy/run
```

### Use

```shell
run i
# be equivalent to
npm run install
```

## documentation

### get [?keyword]

Get the config corresponding to [keyword]

```shell
run get [?keyword]
```

The sample

```shell
run get i
```

### Add

Add the config [command] or [remark] corresponding to [alias]

```shell
run add <alias> <command> <?remark>
```

The sample

```shell
run add i "npm install" "install dependencies"
```

### Update

Update the config [command] or [remark] corresponding to [alias]

```shell
run update <alias> <command> <?remark>
```

The sample

```shell
run update i "npm install --force" "install dependencies"
```

### del

Delete the config corresponding to [aliasList]

```shell
run del [aliasList]
```

The sample

```shell
run del i n
```

### ui

Open the ui interface

```shell
run ui
```
