1
0
mirror of https://github.com/nushell/nushell.git synced 2025-03-22 11:37:10 +01:00
nushell/docs/commands/trim.md
2019-10-06 22:35:38 +08:00

12 lines
171 B
Markdown

# trim
Trim leading and following whitespace from text data
## Example
```shell
> echo " Hello world"
Hello world
> echo " Hello world" | trim
Hello world
```