nushell/docs/commands/export.md

19 lines
300 B
Markdown
Raw Normal View History

---
title: export
layout: command
version: 0.59.0
---
Export custom commands or environment variables from a module.
## Signature
```> export ```
## Examples
Export a definition from a module
```shell
> module utils { export def my-command [] { "hello" } }; use utils my-command; my-command
```