nushell/docs/commands/drop.md
JT bff81f24aa
Autogenerate missing docs (#3514)
* Autogenerate missing docs

* Update ansi.md

* Rename question mark command docs

* Delete empty?.md
2021-05-30 12:57:04 +12:00

529 B

drop

Remove the last number of rows or columns.

Usage

> drop (rows) <subcommand> {flags} 

Subcommands

  • drop column - Remove the last number of columns. If you want to remove columns by name, try 'reject'.

Parameters

  • (rows) starting from the back, the number of rows to remove

Flags

  • -h, --help: Display this help message

Examples

Remove the last item of a list/table

> echo [1 2 3] | drop

Remove the last 2 items of a list/table

> echo [1 2 3] | drop 2