mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 00:43:33 +01:00
bff81f24aa
* Autogenerate missing docs * Update ansi.md * Rename question mark command docs * Delete empty?.md
529 B
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