mirror of
https://github.com/nushell/nushell
synced 2024-12-31 23:39:00 +00:00
18 lines
300 B
Markdown
18 lines
300 B
Markdown
---
|
|
title: export
|
|
layout: command
|
|
version: 0.59.1
|
|
---
|
|
|
|
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
|
|
```
|