nth -> select command (#5217)

This commit is contained in:
Thomas B Homburg 2022-04-17 16:54:24 +02:00 committed by GitHub
parent 7710317224
commit c9f05f074a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -178,7 +178,7 @@ The most common form of data in Nushell is the table. Tables contain rows and
columns of data. In each cell of the table, there is data that you can access
using Nushell commands.
To get the 3rd row in the table, you can use the `nth` command:
To get the 3rd row in the table, you can use the `select` command:
```
ls | select 2
```