2020-05-03 06:49:27 +02:00
# alias
2020-06-23 20:21:47 +02:00
2020-05-24 19:42:20 +02:00
This command allows you to define shortcuts for other common commands. By default, they only apply to the current session. To persist them, add `--save` .
Syntax: `alias {flags} <name> [<parameters>] {<body>}`
2020-05-03 06:49:27 +02:00
The command expects three parameters:
2020-06-23 20:21:47 +02:00
2020-08-01 14:11:26 +02:00
* The name of the alias
2020-07-25 20:15:12 +02:00
* The parameters as a space-separated list (`[a b ...]`), can be empty (`[]`)
* The body of the alias as a `{...}` block
2020-05-03 06:49:27 +02:00
2020-05-24 19:42:20 +02:00
## Flags
2020-07-22 23:42:04 +02:00
* `-s` , `--save` : Save the alias to your config (see `config path` to edit them later)
2020-05-24 19:42:20 +02:00
2020-05-03 06:49:27 +02:00
## Examples
Define a custom `myecho` command as an alias:
2020-06-23 20:21:47 +02:00
2020-05-03 06:49:27 +02:00
```shell
> alias myecho [msg] { echo $msg }
> myecho "hello world"
hello world
```
Since the parameters are well defined, calling the command with the wrong number of parameters will fail properly:
2020-06-23 20:21:47 +02:00
2020-05-03 06:49:27 +02:00
```shell
> myecho hello world
error: myecho unexpected world
- shell:1:18
1 | myecho hello world
| ^^^^^ unexpected argument (try myecho -h)
```
The suggested help command works!
2020-06-23 20:21:47 +02:00
2020-05-03 06:49:27 +02:00
```shell
> myecho -h
Usage:
> myecho ($msg) {flags}
parameters:
($msg)
flags:
-h, --help: Display this help message
```
## Persistent aliases
2020-08-01 14:11:26 +02:00
Aliases are most useful when they are persistent. For that, use the `--save` flag:
2020-06-23 20:21:47 +02:00
```shell
2020-08-01 14:11:26 +02:00
> alias --save myecho [msg] { echo $msg }
2020-05-03 06:49:27 +02:00
```
2020-06-23 20:21:47 +02:00
2020-08-01 14:11:26 +02:00
This will store the alias in your config, under the `startup` key. To edit the saved alias, run it again with the same name, or edit your config file directly. You can find the location of the file using `config path` .
2020-06-23 20:21:47 +02:00
2020-08-01 14:11:26 +02:00
For example, to edit your config file in `vi` , run:
2020-06-23 20:21:47 +02:00
```shell
2020-08-01 14:11:26 +02:00
> vi $(config path)
2020-05-03 06:49:27 +02:00
```