mirror of
https://github.com/nushell/nushell.git
synced 2025-08-17 17:51:09 +02:00
Auto-generate markdown command docs (#4451)
* Finish updating * a couple improvements * Update renames * cleanup examples
This commit is contained in:
28
docs/commands/str_collect.md
Normal file
28
docs/commands/str_collect.md
Normal file
@ -0,0 +1,28 @@
|
||||
---
|
||||
title: str collect
|
||||
layout: command
|
||||
version: 0.59.0
|
||||
---
|
||||
|
||||
creates a string from the input, optionally using a separator
|
||||
|
||||
## Signature
|
||||
|
||||
```> str collect (separator)```
|
||||
|
||||
## Parameters
|
||||
|
||||
- `separator`: optional separator to use when creating string
|
||||
|
||||
## Examples
|
||||
|
||||
Create a string from input
|
||||
```shell
|
||||
> ['nu', 'shell'] | str collect
|
||||
```
|
||||
|
||||
Create a string from input with a separator
|
||||
```shell
|
||||
> ['nu', 'shell'] | str collect '-'
|
||||
```
|
||||
|
Reference in New Issue
Block a user