2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
title: each
|
|
|
|
layout: command
|
|
|
|
version: 0.59.0
|
|
|
|
---
|
2021-05-30 02:57:04 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
Run a block on each element of input
|
|
|
|
|
|
|
|
## Signature
|
2021-05-30 02:57:04 +02:00
|
|
|
|
2022-02-22 14:11:46 +01:00
|
|
|
```> each (block) --keep-empty --numbered```
|
2021-05-30 02:57:04 +02:00
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
- `block`: the block to run
|
2022-02-22 14:11:46 +01:00
|
|
|
- `--keep-empty`: keep empty result cells
|
2022-02-14 03:22:51 +01:00
|
|
|
- `--numbered`: iterate with an index
|
2021-05-30 02:57:04 +02:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
Multiplies elements in list
|
2021-05-30 02:57:04 +02:00
|
|
|
```shell
|
2022-02-17 12:40:24 +01:00
|
|
|
> [1 2 3] | each { |it| 2 * $it }
|
2022-02-14 03:22:51 +01:00
|
|
|
```
|
2022-02-22 14:11:46 +01:00
|
|
|
|
|
|
|
Iterate over each element, keeping only values that succeed
|
|
|
|
```shell
|
|
|
|
> [1 2 3] | each { |it| if $it == 2 { echo "found 2!"} }
|
|
|
|
```
|
|
|
|
|
2022-03-01 14:05:29 +01:00
|
|
|
Iterate over each element, print the matching value and it's index
|
|
|
|
```shell
|
|
|
|
> [1 2 3] | each -n { |it| if $it.item == 2 { echo $"found 2 at ($it.index)!"} }
|
|
|
|
```
|
|
|
|
|
2022-02-22 14:11:46 +01:00
|
|
|
Iterate over each element, keeping all results
|
|
|
|
```shell
|
|
|
|
> [1 2 3] | each --keep-empty { |it| if $it == 2 { echo "found 2!"} }
|
|
|
|
```
|