mirror of
https://github.com/nushell/nushell.git
synced 2024-12-01 21:03:58 +01:00
bff81f24aa
* Autogenerate missing docs * Update ansi.md * Rename question mark command docs * Delete empty?.md
21 lines
370 B
Markdown
21 lines
370 B
Markdown
# ansi strip
|
|
strip ansi escape sequences from string
|
|
|
|
## Usage
|
|
```shell
|
|
> ansi strip ...args {flags}
|
|
```
|
|
|
|
## Parameters
|
|
* ...args: optionally, remove ansi sequences by column paths
|
|
|
|
## Flags
|
|
* -h, --help: Display this help message
|
|
|
|
## Examples
|
|
strip ansi escape sequences from string
|
|
```shell
|
|
> echo [(ansi gb) 'hello' (ansi reset)] | str collect | ansi strip
|
|
```
|
|
|