mirror of
https://github.com/nushell/nushell.git
synced 2024-12-02 05:13:56 +01:00
33 lines
1.3 KiB
Markdown
33 lines
1.3 KiB
Markdown
|
# skip
|
||
|
Skips the first 'n' rows of a table.
|
||
|
|
||
|
## Usage
|
||
|
```shell
|
||
|
> [input-command] | skip (n)
|
||
|
```
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
If we open a file with a list of contacts, we get all of the contacts.
|
||
|
```shell
|
||
|
> open contacts.csv
|
||
|
───┬─────────┬──────┬─────────────────
|
||
|
# │ first │ last │ email
|
||
|
───┼─────────┼──────┼─────────────────
|
||
|
0 │ John │ Doe │ doe.1@email.com
|
||
|
1 │ Jane │ Doe │ doe.2@email.com
|
||
|
2 │ Chris │ Doe │ doe.3@email.com
|
||
|
3 │ Francis │ Doe │ doe.4@email.com
|
||
|
───┴─────────┴──────┴─────────────────
|
||
|
```
|
||
|
|
||
|
To ignore the first 2 contacts, we can `skip` them.
|
||
|
```shell
|
||
|
> open contacts.csv | skip 2
|
||
|
───┬─────────┬──────┬─────────────────
|
||
|
# │ first │ last │ email
|
||
|
───┼─────────┼──────┼─────────────────
|
||
|
0 │ Chris │ Doe │ doe.3@email.com
|
||
|
1 │ Francis │ Doe │ doe.4@email.com
|
||
|
───┴─────────┴──────┴─────────────────
|
||
|
```
|