2022-02-14 02:22:51 +00:00
|
|
|
---
|
|
|
|
title: each
|
|
|
|
layout: command
|
|
|
|
version: 0.59.0
|
|
|
|
---
|
2021-05-30 00:57:04 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
Run a block on each element of input
|
|
|
|
|
|
|
|
## Signature
|
2021-05-30 00:57:04 +00:00
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
```> each (block) --numbered```
|
2021-05-30 00:57:04 +00:00
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
- `block`: the block to run
|
|
|
|
- `--numbered`: iterate with an index
|
2021-05-30 00:57:04 +00:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2022-02-14 02:22:51 +00:00
|
|
|
Multiplies elements in list
|
2021-05-30 00:57:04 +00:00
|
|
|
```shell
|
2022-02-17 11:40:24 +00:00
|
|
|
> [1 2 3] | each { |it| 2 * $it }
|
2022-02-14 02:22:51 +00:00
|
|
|
```
|
2021-05-30 00:57:04 +00:00
|
|
|
|