2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-01-20 17:14:14 +00:00
nushell/docs/commands/trim.md

12 lines
171 B
Markdown
Raw Normal View History

2019-10-06 14:35:38 +00:00
# trim
Trim leading and following whitespace from text data
## Example
```shell
> echo " Hello world"
Hello world
> echo " Hello world" | trim
Hello world
```