> For the complete documentation index, see [llms.txt](https://geodb.gitbook.io/odin-protocol/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://geodb.gitbook.io/odin-protocol/getting-started/odin-alias-optional.md).

# odin alias (optional)

Setting an alias for odin to make your node management easier.

## Set the alias for the current and future sessions

Set this alias for odin;

```
echo "alias odin='docker exec -it node bandd'" >> ~/.bashrc && alias odin='docker exec -it node bandd'
```

{% hint style="info" %}
&#x20;After setting your alias, you will be able to run commands as such;
{% endhint %}

```
odin q bank balances $ADDRESS
```

Comparison of command before alias;

```
docker exec -it node bandd q bank balances $ADDRESS
```
