Add documentation for the trim command

This commit is contained in:
Pradeep Chhetri 2019-10-06 22:35:38 +08:00
parent b066775630
commit 7d115da782

12
docs/commands/trim.md Normal file
View File

@ -0,0 +1,12 @@
# trim
Trim leading and following whitespace from text data
## Example
```shell
> echo " Hello world"
Hello world
> echo " Hello world" | trim
Hello world
```