1
0
mirror of https://github.com/nushell/nushell.git synced 2025-04-04 14:40:43 +02:00
nushell/docs/commands/trim.md
2019-10-06 22:35:38 +08:00

171 B

trim

Trim leading and following whitespace from text data

Example

> echo "    Hello world"
    Hello world
> echo "    Hello world" | trim
Hello world