nushell/docs/commands/exec.md

29 lines
380 B
Markdown
Raw Normal View History

---
title: exec
layout: command
version: 0.59.0
---
Execute a command, replacing the current process.
## Signature
```> exec (command) ...rest```
## Parameters
- `command`: the command to execute
- `...rest`: any additional arguments for the command
## Examples
Execute external 'ps aux' tool
```shell
> exec ps aux
```
Execute 'nautilus'
```shell
> exec nautilus
```