diff --git a/commands/docs/alias.md b/commands/docs/alias.md
index ac113343a25..4c61bd9a18f 100644
--- a/commands/docs/alias.md
+++ b/commands/docs/alias.md
@@ -2,7 +2,7 @@
title: alias
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Alias a command (with optional flags) to a new name.
usage: |
diff --git a/commands/docs/all.md b/commands/docs/all.md
index 14ac5782c0d..b2bd90feead 100644
--- a/commands/docs/all.md
+++ b/commands/docs/all.md
@@ -2,7 +2,7 @@
title: all
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Test if every element of the input fulfills a predicate expression.
usage: |
diff --git a/commands/docs/ansi.md b/commands/docs/ansi.md
index aedd2c4af9e..489bd1abaec 100644
--- a/commands/docs/ansi.md
+++ b/commands/docs/ansi.md
@@ -2,7 +2,7 @@
title: ansi
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
Output ANSI codes to change color and style of text.
usage: |
diff --git a/commands/docs/ansi_gradient.md b/commands/docs/ansi_gradient.md
index 9e025ba9282..d57e0cbf8de 100644
--- a/commands/docs/ansi_gradient.md
+++ b/commands/docs/ansi_gradient.md
@@ -2,7 +2,7 @@
title: ansi gradient
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
Add a color gradient (using ANSI color codes) to the given string.
usage: |
diff --git a/commands/docs/ansi_link.md b/commands/docs/ansi_link.md
index 87350575e19..94f2a69c389 100644
--- a/commands/docs/ansi_link.md
+++ b/commands/docs/ansi_link.md
@@ -2,7 +2,7 @@
title: ansi link
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
Add a link (using OSC 8 escape sequence) to the given string.
usage: |
diff --git a/commands/docs/ansi_strip.md b/commands/docs/ansi_strip.md
index d27761f8521..614427eaba4 100644
--- a/commands/docs/ansi_strip.md
+++ b/commands/docs/ansi_strip.md
@@ -2,7 +2,7 @@
title: ansi strip
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
Strip ANSI escape sequences from a string.
usage: |
diff --git a/commands/docs/any.md b/commands/docs/any.md
index f185403c3a2..ecc707132e0 100644
--- a/commands/docs/any.md
+++ b/commands/docs/any.md
@@ -2,7 +2,7 @@
title: any
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Tests if any element of the input fulfills a predicate expression.
usage: |
diff --git a/commands/docs/append.md b/commands/docs/append.md
index c13be8168cf..80f46186f14 100644
--- a/commands/docs/append.md
+++ b/commands/docs/append.md
@@ -2,7 +2,7 @@
title: append
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Append any number of rows to a table.
usage: |
diff --git a/commands/docs/ast.md b/commands/docs/ast.md
index 43c80273a7f..7105f516e82 100644
--- a/commands/docs/ast.md
+++ b/commands/docs/ast.md
@@ -2,7 +2,7 @@
title: ast
categories: |
debug
-version: 0.98.0
+version: 0.99.0
debug: |
Print the abstract syntax tree (ast) for a pipeline.
usage: |
diff --git a/commands/docs/banner.md b/commands/docs/banner.md
new file mode 100644
index 00000000000..dc46b2a8714
--- /dev/null
+++ b/commands/docs/banner.md
@@ -0,0 +1,26 @@
+---
+title: banner
+categories: |
+ default
+version: 0.99.0
+default: |
+ Print a banner for nushell with information about the project
+usage: |
+ Print a banner for nushell with information about the project
+---
+
+
+# `banner` for [default](/commands/categories/default.md)
+
+
Print a banner for nushell with information about the project
+
+## Signature
+
+```> banner {flags} ```
+
+
+## Input/output types:
+
+| input | output |
+| ----- | ------ |
+| any | any |
diff --git a/commands/docs/bits.md b/commands/docs/bits.md
index 11a9ff532e0..3f4d5402b31 100644
--- a/commands/docs/bits.md
+++ b/commands/docs/bits.md
@@ -2,7 +2,7 @@
title: bits
categories: |
bits
-version: 0.98.0
+version: 0.99.0
bits: |
Various commands for working with bits.
usage: |
diff --git a/commands/docs/bits_and.md b/commands/docs/bits_and.md
index 0e648817c2e..75ea64ea77e 100644
--- a/commands/docs/bits_and.md
+++ b/commands/docs/bits_and.md
@@ -2,7 +2,7 @@
title: bits and
categories: |
bits
-version: 0.98.0
+version: 0.99.0
bits: |
Performs bitwise and for ints or binary values.
usage: |
diff --git a/commands/docs/bits_not.md b/commands/docs/bits_not.md
index 41cbc7e042e..a8439640c1d 100644
--- a/commands/docs/bits_not.md
+++ b/commands/docs/bits_not.md
@@ -2,7 +2,7 @@
title: bits not
categories: |
bits
-version: 0.98.0
+version: 0.99.0
bits: |
Performs logical negation on each bit.
usage: |
diff --git a/commands/docs/bits_or.md b/commands/docs/bits_or.md
index c4719db1b12..410eefb2493 100644
--- a/commands/docs/bits_or.md
+++ b/commands/docs/bits_or.md
@@ -2,7 +2,7 @@
title: bits or
categories: |
bits
-version: 0.98.0
+version: 0.99.0
bits: |
Performs bitwise or for ints or binary values.
usage: |
diff --git a/commands/docs/bits_rol.md b/commands/docs/bits_rol.md
index d36f3ae1874..0ec9ce5de1c 100644
--- a/commands/docs/bits_rol.md
+++ b/commands/docs/bits_rol.md
@@ -2,7 +2,7 @@
title: bits rol
categories: |
bits
-version: 0.98.0
+version: 0.99.0
bits: |
Bitwise rotate left for ints or binary values.
usage: |
diff --git a/commands/docs/bits_ror.md b/commands/docs/bits_ror.md
index d42d64f1a40..a778f5ede0a 100644
--- a/commands/docs/bits_ror.md
+++ b/commands/docs/bits_ror.md
@@ -2,7 +2,7 @@
title: bits ror
categories: |
bits
-version: 0.98.0
+version: 0.99.0
bits: |
Bitwise rotate right for ints or binary values.
usage: |
diff --git a/commands/docs/bits_shl.md b/commands/docs/bits_shl.md
index 87848ac7f99..22c706ab4c7 100644
--- a/commands/docs/bits_shl.md
+++ b/commands/docs/bits_shl.md
@@ -2,7 +2,7 @@
title: bits shl
categories: |
bits
-version: 0.98.0
+version: 0.99.0
bits: |
Bitwise shift left for ints or binary values.
usage: |
diff --git a/commands/docs/bits_shr.md b/commands/docs/bits_shr.md
index fe41ad7da8f..617c565855d 100644
--- a/commands/docs/bits_shr.md
+++ b/commands/docs/bits_shr.md
@@ -2,7 +2,7 @@
title: bits shr
categories: |
bits
-version: 0.98.0
+version: 0.99.0
bits: |
Bitwise shift right for ints or binary values.
usage: |
diff --git a/commands/docs/bits_xor.md b/commands/docs/bits_xor.md
index 5b587198dec..d9e6d71fd4d 100644
--- a/commands/docs/bits_xor.md
+++ b/commands/docs/bits_xor.md
@@ -2,7 +2,7 @@
title: bits xor
categories: |
bits
-version: 0.98.0
+version: 0.99.0
bits: |
Performs bitwise xor for ints or binary values.
usage: |
diff --git a/commands/docs/break.md b/commands/docs/break.md
index 0d96dfc1899..834a9842c33 100644
--- a/commands/docs/break.md
+++ b/commands/docs/break.md
@@ -2,7 +2,7 @@
title: break
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Break a loop.
usage: |
diff --git a/commands/docs/bytes.md b/commands/docs/bytes.md
index 67209f279d6..bb5ead923e9 100644
--- a/commands/docs/bytes.md
+++ b/commands/docs/bytes.md
@@ -2,7 +2,7 @@
title: bytes
categories: |
bytes
-version: 0.98.0
+version: 0.99.0
bytes: |
Various commands for working with byte data.
usage: |
diff --git a/commands/docs/bytes_add.md b/commands/docs/bytes_add.md
index 3825238cd29..d1296c8ca11 100644
--- a/commands/docs/bytes_add.md
+++ b/commands/docs/bytes_add.md
@@ -2,7 +2,7 @@
title: bytes add
categories: |
bytes
-version: 0.98.0
+version: 0.99.0
bytes: |
Add specified bytes to the input.
usage: |
diff --git a/commands/docs/bytes_at.md b/commands/docs/bytes_at.md
index bee8e9ed504..1d42ad415d1 100644
--- a/commands/docs/bytes_at.md
+++ b/commands/docs/bytes_at.md
@@ -2,7 +2,7 @@
title: bytes at
categories: |
bytes
-version: 0.98.0
+version: 0.99.0
bytes: |
Get bytes defined by a range.
usage: |
diff --git a/commands/docs/bytes_build.md b/commands/docs/bytes_build.md
index 13328191e4b..755ab680713 100644
--- a/commands/docs/bytes_build.md
+++ b/commands/docs/bytes_build.md
@@ -2,7 +2,7 @@
title: bytes build
categories: |
bytes
-version: 0.98.0
+version: 0.99.0
bytes: |
Create bytes from the arguments.
usage: |
diff --git a/commands/docs/bytes_collect.md b/commands/docs/bytes_collect.md
index c81322a8644..b3053a101d3 100644
--- a/commands/docs/bytes_collect.md
+++ b/commands/docs/bytes_collect.md
@@ -2,7 +2,7 @@
title: bytes collect
categories: |
bytes
-version: 0.98.0
+version: 0.99.0
bytes: |
Concatenate multiple binary into a single binary, with an optional separator between each.
usage: |
diff --git a/commands/docs/bytes_ends-with.md b/commands/docs/bytes_ends-with.md
index c16cfdcf454..a68973ce6af 100644
--- a/commands/docs/bytes_ends-with.md
+++ b/commands/docs/bytes_ends-with.md
@@ -2,7 +2,7 @@
title: bytes ends-with
categories: |
bytes
-version: 0.98.0
+version: 0.99.0
bytes: |
Check if bytes ends with a pattern.
usage: |
diff --git a/commands/docs/bytes_index-of.md b/commands/docs/bytes_index-of.md
index 547d3a5c618..3cec667337f 100644
--- a/commands/docs/bytes_index-of.md
+++ b/commands/docs/bytes_index-of.md
@@ -2,7 +2,7 @@
title: bytes index-of
categories: |
bytes
-version: 0.98.0
+version: 0.99.0
bytes: |
Returns start index of first occurrence of pattern in bytes, or -1 if no match.
usage: |
diff --git a/commands/docs/bytes_length.md b/commands/docs/bytes_length.md
index 8746b6b33dd..1b15fa85727 100644
--- a/commands/docs/bytes_length.md
+++ b/commands/docs/bytes_length.md
@@ -2,7 +2,7 @@
title: bytes length
categories: |
bytes
-version: 0.98.0
+version: 0.99.0
bytes: |
Output the length of any bytes in the pipeline.
usage: |
diff --git a/commands/docs/bytes_remove.md b/commands/docs/bytes_remove.md
index 93bd69b8841..8197dea9d98 100644
--- a/commands/docs/bytes_remove.md
+++ b/commands/docs/bytes_remove.md
@@ -2,7 +2,7 @@
title: bytes remove
categories: |
bytes
-version: 0.98.0
+version: 0.99.0
bytes: |
Remove bytes.
usage: |
diff --git a/commands/docs/bytes_replace.md b/commands/docs/bytes_replace.md
index 835cd836c5e..62a392a7767 100644
--- a/commands/docs/bytes_replace.md
+++ b/commands/docs/bytes_replace.md
@@ -2,7 +2,7 @@
title: bytes replace
categories: |
bytes
-version: 0.98.0
+version: 0.99.0
bytes: |
Find and replace binary.
usage: |
diff --git a/commands/docs/bytes_reverse.md b/commands/docs/bytes_reverse.md
index 95c5b8a7729..14e7d075bd5 100644
--- a/commands/docs/bytes_reverse.md
+++ b/commands/docs/bytes_reverse.md
@@ -2,7 +2,7 @@
title: bytes reverse
categories: |
bytes
-version: 0.98.0
+version: 0.99.0
bytes: |
Reverse the bytes in the pipeline.
usage: |
diff --git a/commands/docs/bytes_starts-with.md b/commands/docs/bytes_starts-with.md
index c9ba64b59d5..5684d6bb8cd 100644
--- a/commands/docs/bytes_starts-with.md
+++ b/commands/docs/bytes_starts-with.md
@@ -2,7 +2,7 @@
title: bytes starts-with
categories: |
bytes
-version: 0.98.0
+version: 0.99.0
bytes: |
Check if bytes starts with a pattern.
usage: |
diff --git a/commands/docs/cal.md b/commands/docs/cal.md
index b62adeba27a..374c062caec 100644
--- a/commands/docs/cal.md
+++ b/commands/docs/cal.md
@@ -2,7 +2,7 @@
title: cal
categories: |
generators
-version: 0.98.0
+version: 0.99.0
generators: |
Display a calendar.
usage: |
diff --git a/commands/docs/cd.md b/commands/docs/cd.md
index f832e6e3d4e..1d451e5d6a0 100644
--- a/commands/docs/cd.md
+++ b/commands/docs/cd.md
@@ -2,7 +2,7 @@
title: cd
categories: |
filesystem
-version: 0.98.0
+version: 0.99.0
filesystem: |
Change directory.
usage: |
diff --git a/commands/docs/char.md b/commands/docs/char.md
index 10dba031d10..2b5816bbb8c 100644
--- a/commands/docs/char.md
+++ b/commands/docs/char.md
@@ -2,7 +2,7 @@
title: char
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Output special characters (e.g., 'newline').
usage: |
diff --git a/commands/docs/chunks.md b/commands/docs/chunks.md
index f2dec1ed603..bcf7827cc85 100644
--- a/commands/docs/chunks.md
+++ b/commands/docs/chunks.md
@@ -2,7 +2,7 @@
title: chunks
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Divide a list or table into chunks of `chunk_size`.
usage: |
diff --git a/commands/docs/clear.md b/commands/docs/clear.md
index 1f90399ab64..83565174f86 100644
--- a/commands/docs/clear.md
+++ b/commands/docs/clear.md
@@ -2,7 +2,7 @@
title: clear
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
Clear the terminal.
usage: |
diff --git a/commands/docs/collect.md b/commands/docs/collect.md
index 3a567fe75ff..75a733cc703 100644
--- a/commands/docs/collect.md
+++ b/commands/docs/collect.md
@@ -2,7 +2,7 @@
title: collect
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Collect a stream into a value.
usage: |
diff --git a/commands/docs/columns.md b/commands/docs/columns.md
index 13d06d9d8ed..55146434198 100644
--- a/commands/docs/columns.md
+++ b/commands/docs/columns.md
@@ -2,7 +2,7 @@
title: columns
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Given a record or table, produce a list of its columns' names.
usage: |
diff --git a/commands/docs/commandline.md b/commands/docs/commandline.md
index 6651b371b79..89ff62684ed 100644
--- a/commands/docs/commandline.md
+++ b/commands/docs/commandline.md
@@ -2,7 +2,7 @@
title: commandline
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
View the current command line input buffer.
usage: |
diff --git a/commands/docs/commandline_edit.md b/commands/docs/commandline_edit.md
index d1d79f5a585..2322f010252 100644
--- a/commands/docs/commandline_edit.md
+++ b/commands/docs/commandline_edit.md
@@ -2,7 +2,7 @@
title: commandline edit
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Modify the current command line input buffer.
usage: |
diff --git a/commands/docs/commandline_get-cursor.md b/commands/docs/commandline_get-cursor.md
index d550993007b..041aa098caa 100644
--- a/commands/docs/commandline_get-cursor.md
+++ b/commands/docs/commandline_get-cursor.md
@@ -2,7 +2,7 @@
title: commandline get-cursor
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Get the current cursor position.
usage: |
diff --git a/commands/docs/commandline_set-cursor.md b/commands/docs/commandline_set-cursor.md
index eaf56dfea3f..6b203b4b0bf 100644
--- a/commands/docs/commandline_set-cursor.md
+++ b/commands/docs/commandline_set-cursor.md
@@ -2,7 +2,7 @@
title: commandline set-cursor
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Set the current cursor position.
usage: |
diff --git a/commands/docs/compact.md b/commands/docs/compact.md
index 26ac11d43ff..27434998b11 100644
--- a/commands/docs/compact.md
+++ b/commands/docs/compact.md
@@ -2,7 +2,7 @@
title: compact
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Creates a table with non-empty rows.
usage: |
diff --git a/commands/docs/complete.md b/commands/docs/complete.md
index 7520c47ce93..66786bf7882 100644
--- a/commands/docs/complete.md
+++ b/commands/docs/complete.md
@@ -2,7 +2,7 @@
title: complete
categories: |
system
-version: 0.98.0
+version: 0.99.0
system: |
Capture the outputs and exit code from an external piped in command in a nushell table.
usage: |
diff --git a/commands/docs/config.md b/commands/docs/config.md
index 89ba6975988..4a78ef66551 100644
--- a/commands/docs/config.md
+++ b/commands/docs/config.md
@@ -2,7 +2,7 @@
title: config
categories: |
env
-version: 0.98.0
+version: 0.99.0
env: |
Edit nushell configuration files.
usage: |
diff --git a/commands/docs/config_env.md b/commands/docs/config_env.md
index a95d8bbe621..6726a3f72c9 100644
--- a/commands/docs/config_env.md
+++ b/commands/docs/config_env.md
@@ -2,7 +2,7 @@
title: config env
categories: |
env
-version: 0.98.0
+version: 0.99.0
env: |
Edit nu environment configurations.
usage: |
diff --git a/commands/docs/config_nu.md b/commands/docs/config_nu.md
index 3f63c0b7e08..070bbe84ab3 100644
--- a/commands/docs/config_nu.md
+++ b/commands/docs/config_nu.md
@@ -2,7 +2,7 @@
title: config nu
categories: |
env
-version: 0.98.0
+version: 0.99.0
env: |
Edit nu configurations.
usage: |
diff --git a/commands/docs/config_reset.md b/commands/docs/config_reset.md
index 57eaba875f7..7aefebea150 100644
--- a/commands/docs/config_reset.md
+++ b/commands/docs/config_reset.md
@@ -2,7 +2,7 @@
title: config reset
categories: |
env
-version: 0.98.0
+version: 0.99.0
env: |
Reset nushell environment configurations to default, and saves old config files in the config location as oldconfig.nu and oldenv.nu.
usage: |
diff --git a/commands/docs/const.md b/commands/docs/const.md
index c2186786503..2eaf6d7b119 100644
--- a/commands/docs/const.md
+++ b/commands/docs/const.md
@@ -2,7 +2,7 @@
title: const
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Create a parse-time constant.
usage: |
diff --git a/commands/docs/continue.md b/commands/docs/continue.md
index 974bbc9ebb6..ad9ad2f8d9a 100644
--- a/commands/docs/continue.md
+++ b/commands/docs/continue.md
@@ -2,7 +2,7 @@
title: continue
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Continue a loop from the next iteration.
usage: |
diff --git a/commands/docs/cp.md b/commands/docs/cp.md
index 824fab24fb3..8b8dbd831a3 100644
--- a/commands/docs/cp.md
+++ b/commands/docs/cp.md
@@ -2,7 +2,7 @@
title: cp
categories: |
filesystem
-version: 0.98.0
+version: 0.99.0
filesystem: |
Copy files using uutils/coreutils cp.
usage: |
diff --git a/commands/docs/date.md b/commands/docs/date.md
index f73bb869d63..b72ec23db7d 100644
--- a/commands/docs/date.md
+++ b/commands/docs/date.md
@@ -2,7 +2,7 @@
title: date
categories: |
date
-version: 0.98.0
+version: 0.99.0
date: |
Date-related commands.
usage: |
diff --git a/commands/docs/date_format.md b/commands/docs/date_format.md
index ff5240c9785..7ebb8243bbc 100644
--- a/commands/docs/date_format.md
+++ b/commands/docs/date_format.md
@@ -2,7 +2,7 @@
title: date format
categories: |
removed
-version: 0.98.0
+version: 0.99.0
removed: |
Removed command: use `format date` instead.
usage: |
diff --git a/commands/docs/date_humanize.md b/commands/docs/date_humanize.md
index 94ed71a78ee..052fd4aaf58 100644
--- a/commands/docs/date_humanize.md
+++ b/commands/docs/date_humanize.md
@@ -2,7 +2,7 @@
title: date humanize
categories: |
date
-version: 0.98.0
+version: 0.99.0
date: |
Print a 'humanized' format for the date, relative to now.
usage: |
diff --git a/commands/docs/date_list-timezone.md b/commands/docs/date_list-timezone.md
index a459272ed7a..6a93905d3ec 100644
--- a/commands/docs/date_list-timezone.md
+++ b/commands/docs/date_list-timezone.md
@@ -2,7 +2,7 @@
title: date list-timezone
categories: |
date
-version: 0.98.0
+version: 0.99.0
date: |
List supported time zones.
usage: |
diff --git a/commands/docs/date_now.md b/commands/docs/date_now.md
index 47485acabbb..42fe51b323e 100644
--- a/commands/docs/date_now.md
+++ b/commands/docs/date_now.md
@@ -2,7 +2,7 @@
title: date now
categories: |
date
-version: 0.98.0
+version: 0.99.0
date: |
Get the current date.
usage: |
diff --git a/commands/docs/date_to-record.md b/commands/docs/date_to-record.md
index c6189fc76e1..03cd175cc89 100644
--- a/commands/docs/date_to-record.md
+++ b/commands/docs/date_to-record.md
@@ -2,7 +2,7 @@
title: date to-record
categories: |
date
-version: 0.98.0
+version: 0.99.0
date: |
Convert the date into a record.
usage: |
diff --git a/commands/docs/date_to-table.md b/commands/docs/date_to-table.md
index c9d1bd34d1c..7655f010711 100644
--- a/commands/docs/date_to-table.md
+++ b/commands/docs/date_to-table.md
@@ -2,7 +2,7 @@
title: date to-table
categories: |
date
-version: 0.98.0
+version: 0.99.0
date: |
Convert the date into a structured table.
usage: |
diff --git a/commands/docs/date_to-timezone.md b/commands/docs/date_to-timezone.md
index dc1351de32b..ac1a04e7fbd 100644
--- a/commands/docs/date_to-timezone.md
+++ b/commands/docs/date_to-timezone.md
@@ -2,7 +2,7 @@
title: date to-timezone
categories: |
date
-version: 0.98.0
+version: 0.99.0
date: |
Convert a date to a given time zone.
usage: |
@@ -52,13 +52,13 @@ Get the current date in Hawaii.
Get a date in a different time zone, from a string.
```nu
> "2020-10-10 10:00:00 +02:00" | date to-timezone "+0500"
-Sat, 10 Oct 2020 13:00:00 +0500 (3 years ago)
+Sat, 10 Oct 2020 13:00:00 +0500 (4 years ago)
```
Get a date in a different time zone, from a datetime.
```nu
> "2020-10-10 10:00:00 +02:00" | into datetime | date to-timezone "+0500"
-Sat, 10 Oct 2020 13:00:00 +0500 (3 years ago)
+Sat, 10 Oct 2020 13:00:00 +0500 (4 years ago)
```
## Notes
diff --git a/commands/docs/debug.md b/commands/docs/debug.md
index 4358638841b..dc6c8fc9109 100644
--- a/commands/docs/debug.md
+++ b/commands/docs/debug.md
@@ -2,7 +2,7 @@
title: debug
categories: |
debug
-version: 0.98.0
+version: 0.99.0
debug: |
Debug print the value(s) piped in.
usage: |
diff --git a/commands/docs/debug_info.md b/commands/docs/debug_info.md
index b4e7fbb9289..5488b1ceb5e 100644
--- a/commands/docs/debug_info.md
+++ b/commands/docs/debug_info.md
@@ -2,7 +2,7 @@
title: debug info
categories: |
debug
-version: 0.98.0
+version: 0.99.0
debug: |
View process memory info.
usage: |
diff --git a/commands/docs/debug_profile.md b/commands/docs/debug_profile.md
index 15e70561fdd..95869ddcaf8 100644
--- a/commands/docs/debug_profile.md
+++ b/commands/docs/debug_profile.md
@@ -2,7 +2,7 @@
title: debug profile
categories: |
debug
-version: 0.98.0
+version: 0.99.0
debug: |
Profile pipeline elements in a closure.
usage: |
diff --git a/commands/docs/decode.md b/commands/docs/decode.md
index 6ce6475d31c..bff8ed57d47 100644
--- a/commands/docs/decode.md
+++ b/commands/docs/decode.md
@@ -2,7 +2,7 @@
title: decode
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Decode bytes into a string.
usage: |
@@ -52,10 +52,9 @@ documentation link at https://docs.rs/encoding_rs/latest/encoding_rs/#statics
## Subcommands:
-| name | description | type |
-| ---------------------------------------------------------- | ------------------------- | -------- |
-| [`decode base32`](/commands/docs/decode_base32.md) | Decode a Base32 value. | built-in |
-| [`decode base32hex`](/commands/docs/decode_base32hex.md) | Encode a base32hex value. | built-in |
-| [`decode base64`](/commands/docs/decode_base64.md) | Base64 decode a value. | built-in |
-| [`decode hex`](/commands/docs/decode_hex.md) | Hex decode a value. | built-in |
-| [`decode new-base64`](/commands/docs/decode_new-base64.md) | Decode a Base64 value. | built-in |
\ No newline at end of file
+| name | description | type |
+| -------------------------------------------------------- | ------------------------- | -------- |
+| [`decode base32`](/commands/docs/decode_base32.md) | Decode a Base32 value. | built-in |
+| [`decode base32hex`](/commands/docs/decode_base32hex.md) | Encode a base32hex value. | built-in |
+| [`decode base64`](/commands/docs/decode_base64.md) | Decode a Base64 value. | built-in |
+| [`decode hex`](/commands/docs/decode_hex.md) | Hex decode a value. | built-in |
\ No newline at end of file
diff --git a/commands/docs/decode_base32.md b/commands/docs/decode_base32.md
index 69a221e56c1..96bb9221102 100644
--- a/commands/docs/decode_base32.md
+++ b/commands/docs/decode_base32.md
@@ -2,7 +2,7 @@
title: decode base32
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Decode a Base32 value.
usage: |
diff --git a/commands/docs/decode_base32hex.md b/commands/docs/decode_base32hex.md
index 969cc33f782..67735c345c2 100644
--- a/commands/docs/decode_base32hex.md
+++ b/commands/docs/decode_base32hex.md
@@ -2,7 +2,7 @@
title: decode base32hex
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Encode a base32hex value.
usage: |
diff --git a/commands/docs/decode_base64.md b/commands/docs/decode_base64.md
index 4a4c06422c4..708edad4bfa 100644
--- a/commands/docs/decode_base64.md
+++ b/commands/docs/decode_base64.md
@@ -1,57 +1,60 @@
---
title: decode base64
categories: |
- hash
-version: 0.98.0
-hash: |
- Base64 decode a value.
+ formats
+version: 0.99.0
+formats: |
+ Decode a Base64 value.
usage: |
- Base64 decode a value.
+ Decode a Base64 value.
---
-# `decode base64` for [hash](/commands/categories/hash.md)
+# `decode base64` for [formats](/commands/categories/formats.md)
-Base64 decode a value.
+Decode a Base64 value.
## Signature
-```> decode base64 {flags} ...rest```
+```> decode base64 {flags} ```
## Flags
- - `--character-set, -c {string}`: specify the character rules for encoding the input.
- Valid values are 'standard', 'standard-no-padding', 'url-safe', 'url-safe-no-padding','binhex', 'bcrypt', 'crypt', 'mutf7'
- - `--binary, -b`: Output a binary value instead of decoding payload as UTF-8
-
-## Parameters
-
- - `...rest`: For a data structure input, decode data at the given cell paths.
+ - `--url, -`: Decode the URL-safe Base64 version.
+ - `--nopad, -`: Reject padding.
## Input/output types:
-| input | output |
-| ------------ | --------- |
-| list\ | list\ |
-| record | record |
-| string | any |
-| table | table |
+| input | output |
+| ------ | ------ |
+| string | binary |
+
## Examples
-Base64 decode a value and output as UTF-8 string
+Decode a Base64 string
```nu
-> 'U29tZSBEYXRh' | decode base64
-Some Data
+> "U29tZSBEYXRh" | decode base64 | decode
+
```
-Base64 decode a value and output as binary
+Decode arbitrary data
```nu
-> 'U29tZSBEYXRh' | decode base64 --binary
-Length: 9 (0x9) bytes | printable whitespace ascii_other non_ascii
-00000000: 53 6f 6d 65 20 44 61 74 61 Some Data
+> "/w==" | decode base64
+Length: 1 (0x1) bytes | printable whitespace ascii_other non_ascii
+00000000: ff ×
+
+```
+
+Decode a URL-safe Base64 string
+```nu
+> "_w==" | decode base64 --url
+Length: 1 (0x1) bytes | printable whitespace ascii_other non_ascii
+00000000: ff ×
```
## Notes
-Will attempt to decode binary payload as an UTF-8 string by default. Use the `--binary(-b)` argument to force binary output.
\ No newline at end of file
+The default alphabet is taken from RFC 4648, section 4. A URL-safe version is available.
+
+Note this command will collect stream input.
\ No newline at end of file
diff --git a/commands/docs/decode_hex.md b/commands/docs/decode_hex.md
index 5101fe4ddac..2e5731617c4 100644
--- a/commands/docs/decode_hex.md
+++ b/commands/docs/decode_hex.md
@@ -2,7 +2,7 @@
title: decode hex
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Hex decode a value.
usage: |
diff --git a/commands/docs/decode_new-base64.md b/commands/docs/decode_new-base64.md
deleted file mode 100644
index 5a9929769a4..00000000000
--- a/commands/docs/decode_new-base64.md
+++ /dev/null
@@ -1,60 +0,0 @@
----
-title: decode new-base64
-categories: |
- formats
-version: 0.98.0
-formats: |
- Decode a Base64 value.
-usage: |
- Decode a Base64 value.
----
-
-
-# `decode new-base64` for [formats](/commands/categories/formats.md)
-
-Decode a Base64 value.
-
-## Signature
-
-```> decode new-base64 {flags} ```
-
-## Flags
-
- - `--url, -`: Decode the URL-safe Base64 version.
- - `--nopad, -`: Reject padding.
-
-
-## Input/output types:
-
-| input | output |
-| ------ | ------ |
-| string | binary |
-
-## Examples
-
-Decode a Base64 string
-```nu
-> "U29tZSBEYXRh" | decode new-base64 | decode
-
-```
-
-Decode arbitrary data
-```nu
-> "/w==" | decode new-base64
-Length: 1 (0x1) bytes | printable whitespace ascii_other non_ascii
-00000000: ff ×
-
-```
-
-Decode a URL-safe Base64 string
-```nu
-> "_w==" | decode new-base64 --url
-Length: 1 (0x1) bytes | printable whitespace ascii_other non_ascii
-00000000: ff ×
-
-```
-
-## Notes
-The default alphabet is taken from RFC 4648, section 4. A URL-safe version is available.
-
-Note this command will collect stream input.
\ No newline at end of file
diff --git a/commands/docs/def.md b/commands/docs/def.md
index c5da542d854..30c99d1bb74 100644
--- a/commands/docs/def.md
+++ b/commands/docs/def.md
@@ -2,7 +2,7 @@
title: def
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Define a custom command.
usage: |
diff --git a/commands/docs/default.md b/commands/docs/default.md
index 2a3f8195cd9..c2a4cb1e994 100644
--- a/commands/docs/default.md
+++ b/commands/docs/default.md
@@ -2,7 +2,7 @@
title: default
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Sets a default value if a row's column is missing or null.
usage: |
diff --git a/commands/docs/describe.md b/commands/docs/describe.md
index 8752270d791..0d7b582a0d4 100644
--- a/commands/docs/describe.md
+++ b/commands/docs/describe.md
@@ -2,7 +2,7 @@
title: describe
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Describe the type and structure of the value(s) piped in.
usage: |
diff --git a/commands/docs/detect_columns.md b/commands/docs/detect_columns.md
index ecce413ec97..22a2b5d96e5 100644
--- a/commands/docs/detect_columns.md
+++ b/commands/docs/detect_columns.md
@@ -2,7 +2,7 @@
title: detect columns
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Attempt to automatically split text into multiple columns.
usage: |
diff --git a/commands/docs/dexit.md b/commands/docs/dexit.md
deleted file mode 100644
index 561a5300cb1..00000000000
--- a/commands/docs/dexit.md
+++ /dev/null
@@ -1,18 +0,0 @@
----
-title: dexit
-categories: |
- shells
-version: 0.98.0
-shells: |
- Leaves a previously entered working directory.
-usage: |
- Leaves a previously entered working directory.
----
-
-# `dexit` for [shells](/commands/categories/shells.md)
-
-Leaves the currently active working directory if there are multiple shell paths open.
-
-## Signature
-
-```> dexit```
diff --git a/commands/docs/do.md b/commands/docs/do.md
index 0ff2f17efcb..e4b4cb119b2 100644
--- a/commands/docs/do.md
+++ b/commands/docs/do.md
@@ -2,7 +2,7 @@
title: do
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Run a closure, providing it with the pipeline input.
usage: |
diff --git a/commands/docs/drop.md b/commands/docs/drop.md
index 6993af83aa5..3874f135547 100644
--- a/commands/docs/drop.md
+++ b/commands/docs/drop.md
@@ -2,7 +2,7 @@
title: drop
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Remove items/rows from the end of the input list/table. Counterpart of `skip`. Opposite of `last`.
usage: |
diff --git a/commands/docs/drop_column.md b/commands/docs/drop_column.md
index c87276e2787..b7cb9b24529 100644
--- a/commands/docs/drop_column.md
+++ b/commands/docs/drop_column.md
@@ -2,7 +2,7 @@
title: drop column
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Remove N columns at the right-hand end of the input table. To remove columns by name, use `reject`.
usage: |
diff --git a/commands/docs/drop_nth.md b/commands/docs/drop_nth.md
index d4033db56a2..9d50bfe0699 100644
--- a/commands/docs/drop_nth.md
+++ b/commands/docs/drop_nth.md
@@ -2,7 +2,7 @@
title: drop nth
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Drop the selected rows.
usage: |
diff --git a/commands/docs/du.md b/commands/docs/du.md
index 63be6029719..eeed2ab3c6c 100644
--- a/commands/docs/du.md
+++ b/commands/docs/du.md
@@ -2,7 +2,7 @@
title: du
categories: |
filesystem
-version: 0.98.0
+version: 0.99.0
filesystem: |
Find disk usage sizes of specified items.
usage: |
diff --git a/commands/docs/each.md b/commands/docs/each.md
index 6eaf89de8db..41238a9052b 100644
--- a/commands/docs/each.md
+++ b/commands/docs/each.md
@@ -2,7 +2,7 @@
title: each
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Run a closure on each row of the input list, creating a new list with the results.
usage: |
diff --git a/commands/docs/each_while.md b/commands/docs/each_while.md
index ce9ab4d9fe9..7bbf8c5c1a8 100644
--- a/commands/docs/each_while.md
+++ b/commands/docs/each_while.md
@@ -2,7 +2,7 @@
title: each while
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Run a closure on each row of the input list until a null is found, then create a new list with the results.
usage: |
diff --git a/commands/docs/echo.md b/commands/docs/echo.md
index 29264496069..e7c61e89d85 100644
--- a/commands/docs/echo.md
+++ b/commands/docs/echo.md
@@ -2,7 +2,7 @@
title: echo
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Returns its arguments, ignoring the piped-in value.
usage: |
diff --git a/commands/docs/encode.md b/commands/docs/encode.md
index 131c4730776..08aa38343f7 100644
--- a/commands/docs/encode.md
+++ b/commands/docs/encode.md
@@ -2,7 +2,7 @@
title: encode
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Encode a string into bytes.
usage: |
@@ -65,10 +65,9 @@ documentation link at https://docs.rs/encoding_rs/latest/encoding_rs/#statics
## Subcommands:
-| name | description | type |
-| ---------------------------------------------------------- | -------------------------------------------------- | -------- |
-| [`encode base32`](/commands/docs/encode_base32.md) | Encode a string or binary value using Base32. | built-in |
-| [`encode base32hex`](/commands/docs/encode_base32hex.md) | Encode a binary value or a string using base32hex. | built-in |
-| [`encode base64`](/commands/docs/encode_base64.md) | Encode a string or binary value using Base64. | built-in |
-| [`encode hex`](/commands/docs/encode_hex.md) | Hex encode a binary value or a string. | built-in |
-| [`encode new-base64`](/commands/docs/encode_new-base64.md) | Encode a string or binary value using Base64. | built-in |
\ No newline at end of file
+| name | description | type |
+| -------------------------------------------------------- | -------------------------------------------------- | -------- |
+| [`encode base32`](/commands/docs/encode_base32.md) | Encode a string or binary value using Base32. | built-in |
+| [`encode base32hex`](/commands/docs/encode_base32hex.md) | Encode a binary value or a string using base32hex. | built-in |
+| [`encode base64`](/commands/docs/encode_base64.md) | Encode a string or binary value using Base64. | built-in |
+| [`encode hex`](/commands/docs/encode_hex.md) | Hex encode a binary value or a string. | built-in |
\ No newline at end of file
diff --git a/commands/docs/encode_base32.md b/commands/docs/encode_base32.md
index 60a2cf20c02..2d50d6836ba 100644
--- a/commands/docs/encode_base32.md
+++ b/commands/docs/encode_base32.md
@@ -2,7 +2,7 @@
title: encode base32
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Encode a string or binary value using Base32.
usage: |
diff --git a/commands/docs/encode_base32hex.md b/commands/docs/encode_base32hex.md
index 63126c475c4..5f61903b38d 100644
--- a/commands/docs/encode_base32hex.md
+++ b/commands/docs/encode_base32hex.md
@@ -2,7 +2,7 @@
title: encode base32hex
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Encode a binary value or a string using base32hex.
usage: |
diff --git a/commands/docs/encode_base64.md b/commands/docs/encode_base64.md
index 84c73a31b86..ee22cd278c9 100644
--- a/commands/docs/encode_base64.md
+++ b/commands/docs/encode_base64.md
@@ -1,60 +1,56 @@
---
title: encode base64
categories: |
- hash
-version: 0.98.0
-hash: |
+ formats
+version: 0.99.0
+formats: |
Encode a string or binary value using Base64.
usage: |
Encode a string or binary value using Base64.
---
-# `encode base64` for [hash](/commands/categories/hash.md)
+# `encode base64` for [formats](/commands/categories/formats.md)
Encode a string or binary value using Base64.
## Signature
-```> encode base64 {flags} ...rest```
+```> encode base64 {flags} ```
## Flags
- - `--character-set, -c {string}`: specify the character rules for encoding the input.
- Valid values are 'standard', 'standard-no-padding', 'url-safe', 'url-safe-no-padding','binhex', 'bcrypt', 'crypt', 'mutf7'
-
-## Parameters
-
- - `...rest`: For a data structure input, encode data at the given cell paths.
+ - `--url, -`: Use the URL-safe Base64 version.
+ - `--nopad, -`: Don't pad the output.
## Input/output types:
-| input | output |
-| ------------ | ------------ |
-| binary | string |
-| list\ | list\ |
-| list\ | list\ |
-| list\ | list\ |
-| record | record |
-| string | string |
-| table | table |
+| input | output |
+| ------ | ------ |
+| binary | string |
+| string | string |
## Examples
-Encode binary data
+Encode a string with Base64
```nu
-> 0x[09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0] | encode base64
-CfkRAp1041vYQVbFY1aIwA==
+> "Alphabet from A to Z" | encode base64
+QWxwaGFiZXQgZnJvbSBBIHRvIFo=
```
-Encode a string with default settings
+Encode arbitrary data
```nu
-> 'Some Data' | encode base64
-U29tZSBEYXRh
+> 0x[BE EE FF] | encode base64
+vu7/
```
-Encode a string with the binhex character set
+Use a URL-safe alphabet
```nu
-> 'Some Data' | encode base64 --character-set binhex
-8fpYC5"%BA4K
+> 0x[BE EE FF] | encode base64 --url
+vu7_
```
+
+## Notes
+The default alphabet is taken from RFC 4648, section 4. A URL-safe version is available.
+
+Note this command will collect stream input.
\ No newline at end of file
diff --git a/commands/docs/encode_hex.md b/commands/docs/encode_hex.md
index d270dd3a574..584113a20c0 100644
--- a/commands/docs/encode_hex.md
+++ b/commands/docs/encode_hex.md
@@ -2,7 +2,7 @@
title: encode hex
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Hex encode a binary value or a string.
usage: |
diff --git a/commands/docs/encode_new-base64.md b/commands/docs/encode_new-base64.md
deleted file mode 100644
index 8aa44483e62..00000000000
--- a/commands/docs/encode_new-base64.md
+++ /dev/null
@@ -1,56 +0,0 @@
----
-title: encode new-base64
-categories: |
- formats
-version: 0.98.0
-formats: |
- Encode a string or binary value using Base64.
-usage: |
- Encode a string or binary value using Base64.
----
-
-
-# `encode new-base64` for [formats](/commands/categories/formats.md)
-
-Encode a string or binary value using Base64.
-
-## Signature
-
-```> encode new-base64 {flags} ```
-
-## Flags
-
- - `--url, -`: Use the URL-safe Base64 version.
- - `--nopad, -`: Don't pad the output.
-
-
-## Input/output types:
-
-| input | output |
-| ------ | ------ |
-| binary | string |
-| string | string |
-## Examples
-
-Encode a string with Base64
-```nu
-> "Alphabet from A to Z" | encode new-base64
-QWxwaGFiZXQgZnJvbSBBIHRvIFo=
-```
-
-Encode arbitrary data
-```nu
-> 0x[BE EE FF] | encode new-base64
-vu7/
-```
-
-Use a URL-safe alphabet
-```nu
-> 0x[BE EE FF] | encode new-base64 --url
-vu7_
-```
-
-## Notes
-The default alphabet is taken from RFC 4648, section 4. A URL-safe version is available.
-
-Note this command will collect stream input.
\ No newline at end of file
diff --git a/commands/docs/enter.md b/commands/docs/enter.md
deleted file mode 100644
index 094895f7b7f..00000000000
--- a/commands/docs/enter.md
+++ /dev/null
@@ -1,30 +0,0 @@
----
-title: enter
-categories: |
- shells
-version: 0.98.0
-shells: |
- Enters a new shell at the given path.
-usage: |
- Enters a new shell at the given path.
----
-
-# `enter` for [shells](/commands/categories/shells.md)
-
-Enters a new shell at the given path.
-
-## Signature
-
-```> enter (path)```
-
-## Parameters
-
- - `path`: the path to enter as a new shell
-
-## Examples
-
-Enter a new shell at path '../dir-foo'
-```nu
-> enter ../dir-foo
-
-```
diff --git a/commands/docs/enumerate.md b/commands/docs/enumerate.md
index 7ec93cde8f7..c719162524e 100644
--- a/commands/docs/enumerate.md
+++ b/commands/docs/enumerate.md
@@ -2,7 +2,7 @@
title: enumerate
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Enumerate the elements in a stream.
usage: |
diff --git a/commands/docs/error_make.md b/commands/docs/error_make.md
index 9216ce57651..f1cbe2e7127 100644
--- a/commands/docs/error_make.md
+++ b/commands/docs/error_make.md
@@ -2,7 +2,7 @@
title: error make
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Create an error.
usage: |
diff --git a/commands/docs/every.md b/commands/docs/every.md
index fb5d4335f0c..b7d169811f4 100644
--- a/commands/docs/every.md
+++ b/commands/docs/every.md
@@ -2,7 +2,7 @@
title: every
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Show (or skip) every n-th row, starting from the first one.
usage: |
diff --git a/commands/docs/exec.md b/commands/docs/exec.md
index 39d42cced51..c35a61f7435 100644
--- a/commands/docs/exec.md
+++ b/commands/docs/exec.md
@@ -2,7 +2,7 @@
title: exec
categories: |
system
-version: 0.98.0
+version: 0.99.0
system: |
Execute a command, replacing or exiting the current process, depending on platform.
usage: |
diff --git a/commands/docs/exit.md b/commands/docs/exit.md
index 67f7aac4781..59502cef675 100644
--- a/commands/docs/exit.md
+++ b/commands/docs/exit.md
@@ -2,7 +2,7 @@
title: exit
categories: |
shells
-version: 0.98.0
+version: 0.99.0
shells: |
Exit Nu.
usage: |
diff --git a/commands/docs/explain.md b/commands/docs/explain.md
index ec541499efa..9f15c363fe9 100644
--- a/commands/docs/explain.md
+++ b/commands/docs/explain.md
@@ -2,7 +2,7 @@
title: explain
categories: |
debug
-version: 0.98.0
+version: 0.99.0
debug: |
Explain closure contents.
usage: |
diff --git a/commands/docs/explore.md b/commands/docs/explore.md
index 4ef7a784526..f623030b9fe 100644
--- a/commands/docs/explore.md
+++ b/commands/docs/explore.md
@@ -2,7 +2,7 @@
title: explore
categories: |
viewers
-version: 0.98.0
+version: 0.99.0
viewers: |
Explore acts as a table pager, just like `less` does for text.
usage: |
diff --git a/commands/docs/export-env.md b/commands/docs/export-env.md
index f0d4c968835..1bfdc401500 100644
--- a/commands/docs/export-env.md
+++ b/commands/docs/export-env.md
@@ -2,7 +2,7 @@
title: export-env
categories: |
env
-version: 0.98.0
+version: 0.99.0
env: |
Run a block and preserve its environment in a current scope.
usage: |
diff --git a/commands/docs/export.md b/commands/docs/export.md
index ac47e356681..6ce3a86a6d4 100644
--- a/commands/docs/export.md
+++ b/commands/docs/export.md
@@ -2,7 +2,7 @@
title: export
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Export definitions or environment variables from a module.
usage: |
diff --git a/commands/docs/export_alias.md b/commands/docs/export_alias.md
index 0cf78364592..e06a6024ff7 100644
--- a/commands/docs/export_alias.md
+++ b/commands/docs/export_alias.md
@@ -2,7 +2,7 @@
title: export alias
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Alias a command (with optional flags) to a new name and export it from a module.
usage: |
diff --git a/commands/docs/export_const.md b/commands/docs/export_const.md
index 1a7f0acdd80..93a461294f6 100644
--- a/commands/docs/export_const.md
+++ b/commands/docs/export_const.md
@@ -2,7 +2,7 @@
title: export const
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Use parse-time constant from a module and export them from this module.
usage: |
diff --git a/commands/docs/export_def.md b/commands/docs/export_def.md
index 01673996ba7..f7d17255382 100644
--- a/commands/docs/export_def.md
+++ b/commands/docs/export_def.md
@@ -2,7 +2,7 @@
title: export def
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Define a custom command and export it from a module.
usage: |
diff --git a/commands/docs/export_extern.md b/commands/docs/export_extern.md
index ce16df12b4e..7622e31cc8f 100644
--- a/commands/docs/export_extern.md
+++ b/commands/docs/export_extern.md
@@ -2,7 +2,7 @@
title: export extern
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Define an extern and export it from a module.
usage: |
diff --git a/commands/docs/export_module.md b/commands/docs/export_module.md
index f098937c391..f05fa96f45e 100644
--- a/commands/docs/export_module.md
+++ b/commands/docs/export_module.md
@@ -2,7 +2,7 @@
title: export module
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Export a custom module from a module.
usage: |
diff --git a/commands/docs/export_use.md b/commands/docs/export_use.md
index fc1a301a880..20e165d5101 100644
--- a/commands/docs/export_use.md
+++ b/commands/docs/export_use.md
@@ -2,7 +2,7 @@
title: export use
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Use definitions from a module and export them from this module.
usage: |
diff --git a/commands/docs/extern.md b/commands/docs/extern.md
index c7573b8be00..f017aac866e 100644
--- a/commands/docs/extern.md
+++ b/commands/docs/extern.md
@@ -2,7 +2,7 @@
title: extern
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Define a signature for an external command.
usage: |
diff --git a/commands/docs/fill.md b/commands/docs/fill.md
index 2070a2e5fdd..77ff7dbad51 100644
--- a/commands/docs/fill.md
+++ b/commands/docs/fill.md
@@ -2,7 +2,7 @@
title: fill
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Fill and Align.
usage: |
@@ -70,7 +70,7 @@ Fill a number on both sides to a width of 5 with the character '0'
01.10
```
-Fill a filesize on the left side to a width of 5 with the character '0'
+Fill a filesize on both sides to a width of 10 with the character '0'
```nu
> 1kib | fill --alignment middle --character '0' --width 10
0001024000
diff --git a/commands/docs/filter.md b/commands/docs/filter.md
index 07ff413ba7c..b627823f745 100644
--- a/commands/docs/filter.md
+++ b/commands/docs/filter.md
@@ -2,7 +2,7 @@
title: filter
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Filter values based on a predicate closure.
usage: |
diff --git a/commands/docs/find.md b/commands/docs/find.md
index 1957f5d6c42..0367cac082c 100644
--- a/commands/docs/find.md
+++ b/commands/docs/find.md
@@ -2,7 +2,7 @@
title: find
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Searches terms in the input.
usage: |
diff --git a/commands/docs/first.md b/commands/docs/first.md
index 1719da6920d..f402386b93e 100644
--- a/commands/docs/first.md
+++ b/commands/docs/first.md
@@ -2,7 +2,7 @@
title: first
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Return only the first several rows of the input. Counterpart of `last`. Opposite of `skip`.
usage: |
diff --git a/commands/docs/flatten.md b/commands/docs/flatten.md
index d99e1d209b6..46cb2d9750c 100644
--- a/commands/docs/flatten.md
+++ b/commands/docs/flatten.md
@@ -2,7 +2,7 @@
title: flatten
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Flatten the table.
usage: |
diff --git a/commands/docs/fmt.md b/commands/docs/fmt.md
index e363538dd42..b846d4ad178 100644
--- a/commands/docs/fmt.md
+++ b/commands/docs/fmt.md
@@ -2,7 +2,7 @@
title: fmt
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Format a number.
usage: |
diff --git a/commands/docs/for.md b/commands/docs/for.md
index c1376b489ec..ef19f576385 100644
--- a/commands/docs/for.md
+++ b/commands/docs/for.md
@@ -2,7 +2,7 @@
title: for
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Loop over a range.
usage: |
diff --git a/commands/docs/format.md b/commands/docs/format.md
index c469e6b81ba..a8970c551fa 100644
--- a/commands/docs/format.md
+++ b/commands/docs/format.md
@@ -2,7 +2,7 @@
title: format
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Various commands for formatting data.
usage: |
diff --git a/commands/docs/format_date.md b/commands/docs/format_date.md
index 45a94200794..35eb8da091c 100644
--- a/commands/docs/format_date.md
+++ b/commands/docs/format_date.md
@@ -2,7 +2,7 @@
title: format date
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Format a given date using a format string.
usage: |
diff --git a/commands/docs/format_duration.md b/commands/docs/format_duration.md
index c4e4745d21f..4c5e405a4b5 100644
--- a/commands/docs/format_duration.md
+++ b/commands/docs/format_duration.md
@@ -2,7 +2,7 @@
title: format duration
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Outputs duration with a specified unit of time.
usage: |
diff --git a/commands/docs/format_filesize.md b/commands/docs/format_filesize.md
index 6d65de31b6f..2494ba79079 100644
--- a/commands/docs/format_filesize.md
+++ b/commands/docs/format_filesize.md
@@ -2,7 +2,7 @@
title: format filesize
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Converts a column of filesizes to some specified format.
usage: |
diff --git a/commands/docs/format_pattern.md b/commands/docs/format_pattern.md
index 71fd6197bd5..451863978c1 100644
--- a/commands/docs/format_pattern.md
+++ b/commands/docs/format_pattern.md
@@ -2,7 +2,7 @@
title: format pattern
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Format columns into a string using a simple pattern.
usage: |
diff --git a/commands/docs/from.md b/commands/docs/from.md
index f823c88bfff..410de055dfe 100644
--- a/commands/docs/from.md
+++ b/commands/docs/from.md
@@ -2,7 +2,7 @@
title: from
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Parse a string or binary data into structured data.
usage: |
diff --git a/commands/docs/from_csv.md b/commands/docs/from_csv.md
index e6372419764..d27db05d565 100644
--- a/commands/docs/from_csv.md
+++ b/commands/docs/from_csv.md
@@ -2,7 +2,7 @@
title: from csv
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Parse text as .csv and create table.
usage: |
diff --git a/commands/docs/from_eml.md b/commands/docs/from_eml.md
index baa391e8f77..368917abf49 100644
--- a/commands/docs/from_eml.md
+++ b/commands/docs/from_eml.md
@@ -2,7 +2,7 @@
title: from eml
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Parse text as .eml and create record.
usage: |
diff --git a/commands/docs/from_ics.md b/commands/docs/from_ics.md
index 402502d612a..6ce22b3ad79 100644
--- a/commands/docs/from_ics.md
+++ b/commands/docs/from_ics.md
@@ -2,7 +2,7 @@
title: from ics
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Parse text as .ics and create table.
usage: |
diff --git a/commands/docs/from_ini.md b/commands/docs/from_ini.md
index 310a5a756da..0c81e506cf9 100644
--- a/commands/docs/from_ini.md
+++ b/commands/docs/from_ini.md
@@ -2,7 +2,7 @@
title: from ini
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Parse text as .ini and create table.
usage: |
diff --git a/commands/docs/from_json.md b/commands/docs/from_json.md
index 70063473cdc..14589691e18 100644
--- a/commands/docs/from_json.md
+++ b/commands/docs/from_json.md
@@ -2,7 +2,7 @@
title: from json
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Convert from json to structured data.
usage: |
diff --git a/commands/docs/from_msgpack.md b/commands/docs/from_msgpack.md
index c9bbb104944..963073d7145 100644
--- a/commands/docs/from_msgpack.md
+++ b/commands/docs/from_msgpack.md
@@ -2,7 +2,7 @@
title: from msgpack
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Convert MessagePack data into Nu values.
usage: |
diff --git a/commands/docs/from_msgpackz.md b/commands/docs/from_msgpackz.md
index 86682298232..3b244f5165c 100644
--- a/commands/docs/from_msgpackz.md
+++ b/commands/docs/from_msgpackz.md
@@ -2,7 +2,7 @@
title: from msgpackz
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Convert brotli-compressed MessagePack data into Nu values.
usage: |
diff --git a/commands/docs/from_nuon.md b/commands/docs/from_nuon.md
index 0d06d1a5fbe..5f419ed6b67 100644
--- a/commands/docs/from_nuon.md
+++ b/commands/docs/from_nuon.md
@@ -2,7 +2,7 @@
title: from nuon
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Convert from nuon to structured data.
usage: |
diff --git a/commands/docs/from_ods.md b/commands/docs/from_ods.md
index d789e987b49..ee04192da70 100644
--- a/commands/docs/from_ods.md
+++ b/commands/docs/from_ods.md
@@ -2,7 +2,7 @@
title: from ods
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Parse OpenDocument Spreadsheet(.ods) data and create table.
usage: |
diff --git a/commands/docs/from_plist.md b/commands/docs/from_plist.md
index eab17c076eb..996e323f642 100644
--- a/commands/docs/from_plist.md
+++ b/commands/docs/from_plist.md
@@ -2,7 +2,7 @@
title: from plist
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Convert plist to Nushell values
usage: |
diff --git a/commands/docs/from_ssv.md b/commands/docs/from_ssv.md
index 4b6b293feee..d811462a08c 100644
--- a/commands/docs/from_ssv.md
+++ b/commands/docs/from_ssv.md
@@ -2,7 +2,7 @@
title: from ssv
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Parse text as space-separated values and create a table. The default minimum number of spaces counted as a separator is 2.
usage: |
diff --git a/commands/docs/from_toml.md b/commands/docs/from_toml.md
index 35d94659c51..7f8b1e7ec4d 100644
--- a/commands/docs/from_toml.md
+++ b/commands/docs/from_toml.md
@@ -2,7 +2,7 @@
title: from toml
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Parse text as .toml and create record.
usage: |
diff --git a/commands/docs/from_tsv.md b/commands/docs/from_tsv.md
index f964921b8ef..93e7ff098dd 100644
--- a/commands/docs/from_tsv.md
+++ b/commands/docs/from_tsv.md
@@ -2,7 +2,7 @@
title: from tsv
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Parse text as .tsv and create table.
usage: |
diff --git a/commands/docs/from_url.md b/commands/docs/from_url.md
index 2ab02e3665a..3ad96c28666 100644
--- a/commands/docs/from_url.md
+++ b/commands/docs/from_url.md
@@ -2,7 +2,7 @@
title: from url
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Parse url-encoded string as a record.
usage: |
diff --git a/commands/docs/from_vcf.md b/commands/docs/from_vcf.md
index bf975d1a9fb..c6bdfa1cf3d 100644
--- a/commands/docs/from_vcf.md
+++ b/commands/docs/from_vcf.md
@@ -2,7 +2,7 @@
title: from vcf
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Parse text as .vcf and create table.
usage: |
diff --git a/commands/docs/from_xlsx.md b/commands/docs/from_xlsx.md
index e8a49dadd07..23bd42ed865 100644
--- a/commands/docs/from_xlsx.md
+++ b/commands/docs/from_xlsx.md
@@ -2,7 +2,7 @@
title: from xlsx
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Parse binary Excel(.xlsx) data and create table.
usage: |
diff --git a/commands/docs/from_xml.md b/commands/docs/from_xml.md
index b824ccffabe..7fe327f7e43 100644
--- a/commands/docs/from_xml.md
+++ b/commands/docs/from_xml.md
@@ -2,7 +2,7 @@
title: from xml
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Parse text as .xml and create record.
usage: |
diff --git a/commands/docs/from_yaml.md b/commands/docs/from_yaml.md
index d317d8af804..1e558d9a36f 100644
--- a/commands/docs/from_yaml.md
+++ b/commands/docs/from_yaml.md
@@ -2,7 +2,7 @@
title: from yaml
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Parse text as .yaml/.yml and create table.
usage: |
diff --git a/commands/docs/from_yml.md b/commands/docs/from_yml.md
index 0413f04186c..b7a24163dd4 100644
--- a/commands/docs/from_yml.md
+++ b/commands/docs/from_yml.md
@@ -2,7 +2,7 @@
title: from yml
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Parse text as .yaml/.yml and create table.
usage: |
diff --git a/commands/docs/g.md b/commands/docs/g.md
deleted file mode 100644
index 62cade0faa6..00000000000
--- a/commands/docs/g.md
+++ /dev/null
@@ -1,48 +0,0 @@
----
-title: g
-categories: |
- shells
-version: 0.98.0
-shells: |
- Switch to a given shell, or list all shells if no given shell number.
-usage: |
- Switch to a given shell, or list all shells if no given shell number.
----
-
-# `g` for [shells](/commands/categories/shells.md)
-
-Switch to a given shell, or list all shells if no given shell number.
-
-## Signature
-
-```> g (shell_number)```
-
-## Parameters
-
- - `shell_number`: shell number to change to
-
-## Examples
-
-Lists all open shells
-```nu
-> g
-
-```
-
-Make two directories and enter new shells for them, use `g` to jump to the specific shell
-```nu
-> mkdir foo bar; enter foo; enter ../bar; g 1
-
-```
-
-Use `shells` to show all the opened shells and run `g 2` to jump to the third one
-```nu
-> shells; g 2
-
-```
-
-Make two directories and enter new shells for them, use `g -` to jump to the last used shell
-```nu
-> mkdir foo bar; enter foo; enter ../bar; g -
-
-```
diff --git a/commands/docs/generate.md b/commands/docs/generate.md
index f2b6de30e27..7d423894374 100644
--- a/commands/docs/generate.md
+++ b/commands/docs/generate.md
@@ -2,7 +2,7 @@
title: generate
categories: |
generators
-version: 0.98.0
+version: 0.99.0
generators: |
Generate a list of values by successively invoking a closure.
usage: |
diff --git a/commands/docs/get.md b/commands/docs/get.md
index 1e8e7897aca..173701e30c7 100644
--- a/commands/docs/get.md
+++ b/commands/docs/get.md
@@ -2,7 +2,7 @@
title: get
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Extract data using a cell path.
usage: |
diff --git a/commands/docs/glob.md b/commands/docs/glob.md
index 69d7bc31c04..02f4c3b760c 100644
--- a/commands/docs/glob.md
+++ b/commands/docs/glob.md
@@ -2,7 +2,7 @@
title: glob
categories: |
filesystem
-version: 0.98.0
+version: 0.99.0
filesystem: |
Creates a list of files and/or folders based on the glob pattern provided.
usage: |
diff --git a/commands/docs/grid.md b/commands/docs/grid.md
index 59040230801..b26dcb26b3a 100644
--- a/commands/docs/grid.md
+++ b/commands/docs/grid.md
@@ -2,7 +2,7 @@
title: grid
categories: |
viewers
-version: 0.98.0
+version: 0.99.0
viewers: |
Renders the output to a textual terminal grid.
usage: |
diff --git a/commands/docs/group-by.md b/commands/docs/group-by.md
index f791c002096..f01a618bb56 100644
--- a/commands/docs/group-by.md
+++ b/commands/docs/group-by.md
@@ -2,7 +2,7 @@
title: group-by
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Splits a list or table into groups, and returns a record containing those groups.
usage: |
diff --git a/commands/docs/group.md b/commands/docs/group.md
deleted file mode 100644
index 1885b016f52..00000000000
--- a/commands/docs/group.md
+++ /dev/null
@@ -1,48 +0,0 @@
----
-title: group
-categories: |
- filters
-version: 0.98.0
-filters: |
- Groups input into groups of `group_size`.
-usage: |
- Groups input into groups of `group_size`.
----
-
-
-# `group` for [filters](/commands/categories/filters.md)
-
-Groups input into groups of `group_size`.
-
-## Signature
-
-```> group {flags} (group_size)```
-
-## Parameters
-
- - `group_size`: The size of each group.
-
-
-## Input/output types:
-
-| input | output |
-| --------- | --------------- |
-| list\ | list\\> |
-
-## Examples
-
-Group the a list by pairs
-```nu
-> [1 2 3 4] | group 2
-╭───┬───────────╮
-│ 0 │ ╭───┬───╮ │
-│ │ │ 0 │ 1 │ │
-│ │ │ 1 │ 2 │ │
-│ │ ╰───┴───╯ │
-│ 1 │ ╭───┬───╮ │
-│ │ │ 0 │ 3 │ │
-│ │ │ 1 │ 4 │ │
-│ │ ╰───┴───╯ │
-╰───┴───────────╯
-
-```
diff --git a/commands/docs/gstat.md b/commands/docs/gstat.md
index 28cd339fe67..5ec62879334 100644
--- a/commands/docs/gstat.md
+++ b/commands/docs/gstat.md
@@ -2,7 +2,7 @@
title: gstat
categories: |
prompt
-version: 0.98.0
+version: 0.99.0
prompt: |
Get the git status of a repo
usage: |
diff --git a/commands/docs/hash.md b/commands/docs/hash.md
index 20a79e8305a..a755a587c12 100644
--- a/commands/docs/hash.md
+++ b/commands/docs/hash.md
@@ -2,7 +2,7 @@
title: hash
categories: |
hash
-version: 0.98.0
+version: 0.99.0
hash: |
Apply hash function.
usage: |
diff --git a/commands/docs/hash_md5.md b/commands/docs/hash_md5.md
index 6bbd18a7c2a..485beb635f5 100644
--- a/commands/docs/hash_md5.md
+++ b/commands/docs/hash_md5.md
@@ -2,7 +2,7 @@
title: hash md5
categories: |
hash
-version: 0.98.0
+version: 0.99.0
hash: |
Hash a value using the md5 hash algorithm.
usage: |
@@ -31,6 +31,7 @@ usage: |
| input | output |
| ------ | ------ |
+| binary | any |
| record | record |
| string | any |
| table | table |
diff --git a/commands/docs/hash_sha256.md b/commands/docs/hash_sha256.md
index a7c72b2db54..806f147469d 100644
--- a/commands/docs/hash_sha256.md
+++ b/commands/docs/hash_sha256.md
@@ -2,7 +2,7 @@
title: hash sha256
categories: |
hash
-version: 0.98.0
+version: 0.99.0
hash: |
Hash a value using the sha256 hash algorithm.
usage: |
@@ -31,6 +31,7 @@ usage: |
| input | output |
| ------ | ------ |
+| binary | any |
| record | record |
| string | any |
| table | table |
diff --git a/commands/docs/headers.md b/commands/docs/headers.md
index e64d6c39fb3..b3c3411c026 100644
--- a/commands/docs/headers.md
+++ b/commands/docs/headers.md
@@ -2,7 +2,7 @@
title: headers
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Use the first row of the table as column names.
usage: |
diff --git a/commands/docs/help.md b/commands/docs/help.md
index 05443cf60c6..4fdbd65ef0e 100644
--- a/commands/docs/help.md
+++ b/commands/docs/help.md
@@ -2,7 +2,7 @@
title: help
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Display help information about different parts of Nushell.
usage: |
diff --git a/commands/docs/help_aliases.md b/commands/docs/help_aliases.md
index 6df005a39a8..bddc94bf028 100644
--- a/commands/docs/help_aliases.md
+++ b/commands/docs/help_aliases.md
@@ -2,7 +2,7 @@
title: help aliases
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Show help on nushell aliases.
usage: |
diff --git a/commands/docs/help_commands.md b/commands/docs/help_commands.md
index c70cc8def34..f8e984f8b2f 100644
--- a/commands/docs/help_commands.md
+++ b/commands/docs/help_commands.md
@@ -2,7 +2,7 @@
title: help commands
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Show help on nushell commands.
usage: |
diff --git a/commands/docs/help_escapes.md b/commands/docs/help_escapes.md
index 31cf0136be0..34ea32239d0 100644
--- a/commands/docs/help_escapes.md
+++ b/commands/docs/help_escapes.md
@@ -2,7 +2,7 @@
title: help escapes
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Show help on nushell string escapes.
usage: |
diff --git a/commands/docs/help_externs.md b/commands/docs/help_externs.md
index adcc97d1321..ee88f7cca2e 100644
--- a/commands/docs/help_externs.md
+++ b/commands/docs/help_externs.md
@@ -2,7 +2,7 @@
title: help externs
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Show help on nushell externs.
usage: |
diff --git a/commands/docs/help_modules.md b/commands/docs/help_modules.md
index 4b371757b18..8d5e6868e66 100644
--- a/commands/docs/help_modules.md
+++ b/commands/docs/help_modules.md
@@ -2,7 +2,7 @@
title: help modules
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Show help on nushell modules.
usage: |
diff --git a/commands/docs/help_operators.md b/commands/docs/help_operators.md
index 82288edc0aa..f1d23861524 100644
--- a/commands/docs/help_operators.md
+++ b/commands/docs/help_operators.md
@@ -2,7 +2,7 @@
title: help operators
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Show help on nushell operators.
usage: |
diff --git a/commands/docs/hide-env.md b/commands/docs/hide-env.md
index f631c879b7d..fcc0b257295 100644
--- a/commands/docs/hide-env.md
+++ b/commands/docs/hide-env.md
@@ -2,7 +2,7 @@
title: hide-env
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Hide environment variables in the current scope.
usage: |
@@ -37,6 +37,6 @@ usage: |
Hide an environment variable
```nu
-> $env.HZ_ENV_ABC = 1; hide-env HZ_ENV_ABC; 'HZ_ENV_ABC' in (env).name
+> $env.HZ_ENV_ABC = 1; hide-env HZ_ENV_ABC; 'HZ_ENV_ABC' in $env
false
```
diff --git a/commands/docs/hide.md b/commands/docs/hide.md
index 2741686f180..1f9fdc2eba1 100644
--- a/commands/docs/hide.md
+++ b/commands/docs/hide.md
@@ -2,7 +2,7 @@
title: hide
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Hide definitions in the current scope.
usage: |
diff --git a/commands/docs/histogram.md b/commands/docs/histogram.md
index 93fa48c8233..ed8e4beb699 100644
--- a/commands/docs/histogram.md
+++ b/commands/docs/histogram.md
@@ -2,7 +2,7 @@
title: histogram
categories: |
chart
-version: 0.98.0
+version: 0.99.0
chart: |
Creates a new table with a histogram based on the column name passed in.
usage: |
diff --git a/commands/docs/history.md b/commands/docs/history.md
index aa7ea911122..f32db583eb5 100644
--- a/commands/docs/history.md
+++ b/commands/docs/history.md
@@ -2,7 +2,7 @@
title: history
categories: |
history
-version: 0.98.0
+version: 0.99.0
history: |
Get the command history.
usage: |
diff --git a/commands/docs/history_session.md b/commands/docs/history_session.md
index 5ac7369cef3..79a72076b4e 100644
--- a/commands/docs/history_session.md
+++ b/commands/docs/history_session.md
@@ -2,7 +2,7 @@
title: history session
categories: |
history
-version: 0.98.0
+version: 0.99.0
history: |
Get the command history session.
usage: |
diff --git a/commands/docs/http.md b/commands/docs/http.md
index 97241c9c003..796e78268a9 100644
--- a/commands/docs/http.md
+++ b/commands/docs/http.md
@@ -2,7 +2,7 @@
title: http
categories: |
network
-version: 0.98.0
+version: 0.99.0
network: |
Various commands for working with http methods.
usage: |
diff --git a/commands/docs/http_delete.md b/commands/docs/http_delete.md
index 9d35fc85275..f86aed39fbe 100644
--- a/commands/docs/http_delete.md
+++ b/commands/docs/http_delete.md
@@ -2,7 +2,7 @@
title: http delete
categories: |
network
-version: 0.98.0
+version: 0.99.0
network: |
Delete the specified resource.
usage: |
diff --git a/commands/docs/http_get.md b/commands/docs/http_get.md
index 3ef7cef8664..b78d05caebf 100644
--- a/commands/docs/http_get.md
+++ b/commands/docs/http_get.md
@@ -2,7 +2,7 @@
title: http get
categories: |
network
-version: 0.98.0
+version: 0.99.0
network: |
Fetch the contents from a URL.
usage: |
diff --git a/commands/docs/http_head.md b/commands/docs/http_head.md
index 24531f9dcf4..71640086ddc 100644
--- a/commands/docs/http_head.md
+++ b/commands/docs/http_head.md
@@ -2,7 +2,7 @@
title: http head
categories: |
network
-version: 0.98.0
+version: 0.99.0
network: |
Get the headers from a URL.
usage: |
diff --git a/commands/docs/http_options.md b/commands/docs/http_options.md
index 7f1d8be935a..ff40697680b 100644
--- a/commands/docs/http_options.md
+++ b/commands/docs/http_options.md
@@ -2,7 +2,7 @@
title: http options
categories: |
network
-version: 0.98.0
+version: 0.99.0
network: |
Requests permitted communication options for a given URL.
usage: |
diff --git a/commands/docs/http_patch.md b/commands/docs/http_patch.md
index 378afe3e008..fa3ff2eb24c 100644
--- a/commands/docs/http_patch.md
+++ b/commands/docs/http_patch.md
@@ -2,7 +2,7 @@
title: http patch
categories: |
network
-version: 0.98.0
+version: 0.99.0
network: |
Patch a body to a URL.
usage: |
diff --git a/commands/docs/http_post.md b/commands/docs/http_post.md
index c09815b20fc..8c96b0562b3 100644
--- a/commands/docs/http_post.md
+++ b/commands/docs/http_post.md
@@ -2,7 +2,7 @@
title: http post
categories: |
network
-version: 0.98.0
+version: 0.99.0
network: |
Post a body to a URL.
usage: |
diff --git a/commands/docs/http_put.md b/commands/docs/http_put.md
index 9c9d7541cfc..e7f03366fb7 100644
--- a/commands/docs/http_put.md
+++ b/commands/docs/http_put.md
@@ -2,7 +2,7 @@
title: http put
categories: |
network
-version: 0.98.0
+version: 0.99.0
network: |
Put a body to a URL.
usage: |
diff --git a/commands/docs/if.md b/commands/docs/if.md
index 40609aec630..00783610581 100644
--- a/commands/docs/if.md
+++ b/commands/docs/if.md
@@ -2,7 +2,7 @@
title: if
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Conditionally run a block.
usage: |
diff --git a/commands/docs/ignore.md b/commands/docs/ignore.md
index 95e32d15d75..cf052cfd9f9 100644
--- a/commands/docs/ignore.md
+++ b/commands/docs/ignore.md
@@ -2,7 +2,7 @@
title: ignore
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Ignore the output of the previous command in the pipeline.
usage: |
diff --git a/commands/docs/inc.md b/commands/docs/inc.md
index 7428f223330..37a8a54fad1 100644
--- a/commands/docs/inc.md
+++ b/commands/docs/inc.md
@@ -2,7 +2,7 @@
title: inc
categories: |
default
-version: 0.98.0
+version: 0.99.0
default: |
Increment a value or version. Optionally use the column of a table.
usage: |
diff --git a/commands/docs/input.md b/commands/docs/input.md
index e3b130050d0..a36ffa064d1 100644
--- a/commands/docs/input.md
+++ b/commands/docs/input.md
@@ -2,7 +2,7 @@
title: input
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
Get input from the user.
usage: |
diff --git a/commands/docs/input_list.md b/commands/docs/input_list.md
index 1f63848c749..a30e89ac5f3 100644
--- a/commands/docs/input_list.md
+++ b/commands/docs/input_list.md
@@ -2,7 +2,7 @@
title: input list
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
Interactive list selection.
usage: |
diff --git a/commands/docs/input_listen.md b/commands/docs/input_listen.md
index bc2645375ff..ba38014d593 100644
--- a/commands/docs/input_listen.md
+++ b/commands/docs/input_listen.md
@@ -2,7 +2,7 @@
title: input listen
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
Listen for user interface event.
usage: |
diff --git a/commands/docs/insert.md b/commands/docs/insert.md
index 97f0a991d09..a7b76ea10ad 100644
--- a/commands/docs/insert.md
+++ b/commands/docs/insert.md
@@ -2,7 +2,7 @@
title: insert
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Insert a new column, using an expression or closure to create each row's values.
usage: |
diff --git a/commands/docs/inspect.md b/commands/docs/inspect.md
index 9bf25d75c4c..0cb3659f8cc 100644
--- a/commands/docs/inspect.md
+++ b/commands/docs/inspect.md
@@ -2,7 +2,7 @@
title: inspect
categories: |
debug
-version: 0.98.0
+version: 0.99.0
debug: |
Inspect pipeline results while running a pipeline.
usage: |
diff --git a/commands/docs/interleave.md b/commands/docs/interleave.md
index 82359fd3943..132aa11a1a4 100644
--- a/commands/docs/interleave.md
+++ b/commands/docs/interleave.md
@@ -2,7 +2,7 @@
title: interleave
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Read multiple streams in parallel and combine them into one stream.
usage: |
diff --git a/commands/docs/into.md b/commands/docs/into.md
index 7b8fb7ef5ec..0f2ba8b6ebb 100644
--- a/commands/docs/into.md
+++ b/commands/docs/into.md
@@ -2,7 +2,7 @@
title: into
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Commands to convert data from one type to another.
usage: |
@@ -45,4 +45,4 @@ You must use one of the following subcommands. Using this command as-is will onl
| [`into record`](/commands/docs/into_record.md) | Convert value to record. | built-in |
| [`into sqlite`](/commands/docs/into_sqlite.md) | Convert table into a SQLite database. | built-in |
| [`into string`](/commands/docs/into_string.md) | Convert value to string. | built-in |
-| [`into value`](/commands/docs/into_value.md) | Infer nushell datatype for each cell. | built-in |
\ No newline at end of file
+| [`into value`](/commands/docs/into_value.md) | Infer Nushell datatype for each cell. | built-in |
\ No newline at end of file
diff --git a/commands/docs/into_binary.md b/commands/docs/into_binary.md
index e06205de42a..b3c060913ad 100644
--- a/commands/docs/into_binary.md
+++ b/commands/docs/into_binary.md
@@ -2,7 +2,7 @@
title: into binary
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Convert value to a binary primitive.
usage: |
diff --git a/commands/docs/into_bits.md b/commands/docs/into_bits.md
index 0415f1a8804..876a8d2e367 100644
--- a/commands/docs/into_bits.md
+++ b/commands/docs/into_bits.md
@@ -2,7 +2,7 @@
title: into bits
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Convert value to a binary primitive.
usage: |
diff --git a/commands/docs/into_bool.md b/commands/docs/into_bool.md
index abdfc4d19b5..8aa5709973d 100644
--- a/commands/docs/into_bool.md
+++ b/commands/docs/into_bool.md
@@ -2,7 +2,7 @@
title: into bool
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Convert value to boolean.
usage: |
diff --git a/commands/docs/into_cell-path.md b/commands/docs/into_cell-path.md
index 00cab44f297..bf8da861892 100644
--- a/commands/docs/into_cell-path.md
+++ b/commands/docs/into_cell-path.md
@@ -2,7 +2,7 @@
title: into cell-path
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Convert value to a cell-path.
usage: |
diff --git a/commands/docs/into_datetime.md b/commands/docs/into_datetime.md
index 2edd273ebdc..c2441574522 100644
--- a/commands/docs/into_datetime.md
+++ b/commands/docs/into_datetime.md
@@ -2,7 +2,7 @@
title: into datetime
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Convert text or timestamp into a datetime.
usage: |
@@ -81,11 +81,11 @@ Sat, 27 Feb 2021 13:55:40 +0000 (3 years ago)
Convert list of timestamps to datetimes
```nu
> ["2023-03-30 10:10:07 -05:00", "2023-05-05 13:43:49 -05:00", "2023-06-05 01:37:42 -05:00"] | into datetime
-╭───┬────────────╮
-│ 0 │ a year ago │
-│ 1 │ a year ago │
-│ 2 │ a year ago │
-╰───┴────────────╯
+╭───┬─────────────╮
+│ 0 │ 2 years ago │
+│ 1 │ a year ago │
+│ 2 │ a year ago │
+╰───┴─────────────╯
```
diff --git a/commands/docs/into_duration.md b/commands/docs/into_duration.md
index 9107b8ef33e..e570fee349c 100644
--- a/commands/docs/into_duration.md
+++ b/commands/docs/into_duration.md
@@ -2,7 +2,7 @@
title: into duration
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Convert value to duration.
usage: |
diff --git a/commands/docs/into_filesize.md b/commands/docs/into_filesize.md
index 13ca04a351b..260ef100e8d 100644
--- a/commands/docs/into_filesize.md
+++ b/commands/docs/into_filesize.md
@@ -2,7 +2,7 @@
title: into filesize
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Convert value to filesize.
usage: |
diff --git a/commands/docs/into_float.md b/commands/docs/into_float.md
index 085dda070ee..14208ab950f 100644
--- a/commands/docs/into_float.md
+++ b/commands/docs/into_float.md
@@ -2,7 +2,7 @@
title: into float
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Convert data into floating point number.
usage: |
diff --git a/commands/docs/into_glob.md b/commands/docs/into_glob.md
index f9fec744582..bcdc603be7b 100644
--- a/commands/docs/into_glob.md
+++ b/commands/docs/into_glob.md
@@ -2,7 +2,7 @@
title: into glob
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Convert value to glob.
usage: |
diff --git a/commands/docs/into_int.md b/commands/docs/into_int.md
index d62351a93cd..1e07aee2bff 100644
--- a/commands/docs/into_int.md
+++ b/commands/docs/into_int.md
@@ -2,7 +2,7 @@
title: into int
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Convert value to integer.
usage: |
diff --git a/commands/docs/into_record.md b/commands/docs/into_record.md
index b1c44d1a765..5490b0af36c 100644
--- a/commands/docs/into_record.md
+++ b/commands/docs/into_record.md
@@ -2,7 +2,7 @@
title: into record
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Convert value to record.
usage: |
diff --git a/commands/docs/into_sqlite.md b/commands/docs/into_sqlite.md
index 88168243315..8d13c2c9a46 100644
--- a/commands/docs/into_sqlite.md
+++ b/commands/docs/into_sqlite.md
@@ -2,7 +2,7 @@
title: into sqlite
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Convert table into a SQLite database.
usage: |
diff --git a/commands/docs/into_string.md b/commands/docs/into_string.md
index e3157be5078..b63346b71ad 100644
--- a/commands/docs/into_string.md
+++ b/commands/docs/into_string.md
@@ -2,7 +2,7 @@
title: into string
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Convert value to string.
usage: |
diff --git a/commands/docs/into_value.md b/commands/docs/into_value.md
index 4b51f5c2b26..e801b22e008 100644
--- a/commands/docs/into_value.md
+++ b/commands/docs/into_value.md
@@ -2,17 +2,17 @@
title: into value
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
- Infer nushell datatype for each cell.
+ Infer Nushell datatype for each cell.
usage: |
- Infer nushell datatype for each cell.
+ Infer Nushell datatype for each cell.
---
# `into value` for [filters](/commands/categories/filters.md)
-Infer nushell datatype for each cell.
+Infer Nushell datatype for each cell.
## Signature
diff --git a/commands/docs/is-admin.md b/commands/docs/is-admin.md
index 5752da71131..f3d4e77f34c 100644
--- a/commands/docs/is-admin.md
+++ b/commands/docs/is-admin.md
@@ -2,7 +2,7 @@
title: is-admin
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Check if nushell is running with administrator or root privileges.
usage: |
diff --git a/commands/docs/is-empty.md b/commands/docs/is-empty.md
index 086dfc5fad5..0b32e88aba2 100644
--- a/commands/docs/is-empty.md
+++ b/commands/docs/is-empty.md
@@ -2,7 +2,7 @@
title: is-empty
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Check for empty values.
usage: |
diff --git a/commands/docs/is-not-empty.md b/commands/docs/is-not-empty.md
index 8df3704777d..0bbd3dded8a 100644
--- a/commands/docs/is-not-empty.md
+++ b/commands/docs/is-not-empty.md
@@ -2,7 +2,7 @@
title: is-not-empty
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Check for non-empty values.
usage: |
diff --git a/commands/docs/is-terminal.md b/commands/docs/is-terminal.md
index 41744c4cb27..b2f2311c547 100644
--- a/commands/docs/is-terminal.md
+++ b/commands/docs/is-terminal.md
@@ -2,7 +2,7 @@
title: is-terminal
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
Check if stdin, stdout, or stderr is a terminal.
usage: |
diff --git a/commands/docs/items.md b/commands/docs/items.md
index b57afd04912..33652ecfb0c 100644
--- a/commands/docs/items.md
+++ b/commands/docs/items.md
@@ -2,7 +2,7 @@
title: items
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Given a record, iterate on each pair of column name and associated value.
usage: |
diff --git a/commands/docs/join.md b/commands/docs/join.md
index 51b05e559bd..23c8b0649e4 100644
--- a/commands/docs/join.md
+++ b/commands/docs/join.md
@@ -2,7 +2,7 @@
title: join
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Join two tables.
usage: |
diff --git a/commands/docs/keybindings.md b/commands/docs/keybindings.md
index 9f143f05b38..2c8543651ec 100644
--- a/commands/docs/keybindings.md
+++ b/commands/docs/keybindings.md
@@ -2,7 +2,7 @@
title: keybindings
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
Keybindings related commands.
usage: |
diff --git a/commands/docs/keybindings_default.md b/commands/docs/keybindings_default.md
index 3bfd8b23819..4d4445a4086 100644
--- a/commands/docs/keybindings_default.md
+++ b/commands/docs/keybindings_default.md
@@ -2,7 +2,7 @@
title: keybindings default
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
List default keybindings.
usage: |
diff --git a/commands/docs/keybindings_list.md b/commands/docs/keybindings_list.md
index 04a440599be..67bed10dbc2 100644
--- a/commands/docs/keybindings_list.md
+++ b/commands/docs/keybindings_list.md
@@ -2,7 +2,7 @@
title: keybindings list
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
List available options that can be used to create keybindings.
usage: |
diff --git a/commands/docs/keybindings_listen.md b/commands/docs/keybindings_listen.md
index 6a1b028c06c..be9241c4533 100644
--- a/commands/docs/keybindings_listen.md
+++ b/commands/docs/keybindings_listen.md
@@ -2,7 +2,7 @@
title: keybindings listen
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
Get input from the user.
usage: |
diff --git a/commands/docs/kill.md b/commands/docs/kill.md
index 3b798e5b82e..2207db780d8 100644
--- a/commands/docs/kill.md
+++ b/commands/docs/kill.md
@@ -2,7 +2,7 @@
title: kill
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
Kill a process using the process id.
usage: |
diff --git a/commands/docs/last.md b/commands/docs/last.md
index f79e3ea2a14..d9a11c4f28d 100644
--- a/commands/docs/last.md
+++ b/commands/docs/last.md
@@ -2,7 +2,7 @@
title: last
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Return only the last several rows of the input. Counterpart of `first`. Opposite of `drop`.
usage: |
diff --git a/commands/docs/length.md b/commands/docs/length.md
index a4e6546a253..f10c3ae4be9 100644
--- a/commands/docs/length.md
+++ b/commands/docs/length.md
@@ -2,7 +2,7 @@
title: length
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Count the number of items in an input list or rows in a table.
usage: |
diff --git a/commands/docs/let-env.md b/commands/docs/let-env.md
index 7d338b2eeb9..f2afa5d3090 100644
--- a/commands/docs/let-env.md
+++ b/commands/docs/let-env.md
@@ -2,7 +2,7 @@
title: let-env
categories: |
removed
-version: 0.98.0
+version: 0.99.0
removed: |
`let-env FOO = ...` has been removed, use `$env.FOO = ...` instead.
usage: |
diff --git a/commands/docs/let.md b/commands/docs/let.md
index 059e13ac48a..148047d6530 100644
--- a/commands/docs/let.md
+++ b/commands/docs/let.md
@@ -2,7 +2,7 @@
title: let
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Create a variable and give it a value.
usage: |
diff --git a/commands/docs/lines.md b/commands/docs/lines.md
index c84f9c5111a..15536e537f1 100644
--- a/commands/docs/lines.md
+++ b/commands/docs/lines.md
@@ -2,7 +2,7 @@
title: lines
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Converts input to lines.
usage: |
diff --git a/commands/docs/load-env.md b/commands/docs/load-env.md
index 0c44eb03b10..4320ecc4678 100644
--- a/commands/docs/load-env.md
+++ b/commands/docs/load-env.md
@@ -2,7 +2,7 @@
title: load-env
categories: |
filesystem
-version: 0.98.0
+version: 0.99.0
filesystem: |
Loads an environment update from a record.
usage: |
diff --git a/commands/docs/loop.md b/commands/docs/loop.md
index bad2d23aefd..ba80ec7fbcc 100644
--- a/commands/docs/loop.md
+++ b/commands/docs/loop.md
@@ -2,7 +2,7 @@
title: loop
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Run a block in a loop.
usage: |
diff --git a/commands/docs/ls.md b/commands/docs/ls.md
index 94747dc644f..c7ba1f1d984 100644
--- a/commands/docs/ls.md
+++ b/commands/docs/ls.md
@@ -2,7 +2,7 @@
title: ls
categories: |
filesystem
-version: 0.98.0
+version: 0.99.0
filesystem: |
List the filenames, sizes, and modification times of items in a directory.
usage: |
@@ -27,6 +27,7 @@ usage: |
- `--du, -d`: Display the apparent directory size ("disk usage") in place of the directory metadata size
- `--directory, -D`: List the specified directory itself instead of its contents
- `--mime-type, -m`: Show mime-type in type column instead of 'file' (based on filenames only; files' contents are not examined)
+ - `--threads, -t`: Use multiple threads to list contents. Output will be non-deterministic.
## Parameters
diff --git a/commands/docs/match.md b/commands/docs/match.md
index b5c29ec859a..c5d38178a22 100644
--- a/commands/docs/match.md
+++ b/commands/docs/match.md
@@ -2,7 +2,7 @@
title: match
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Conditionally run a block on a matched value.
usage: |
diff --git a/commands/docs/math.md b/commands/docs/math.md
index 26dd351f119..e0cd6646181 100644
--- a/commands/docs/math.md
+++ b/commands/docs/math.md
@@ -2,7 +2,7 @@
title: math
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Use mathematical functions as aggregate functions on a list of numbers or tables.
usage: |
diff --git a/commands/docs/math_abs.md b/commands/docs/math_abs.md
index aae8804ee05..454099bc5a8 100644
--- a/commands/docs/math_abs.md
+++ b/commands/docs/math_abs.md
@@ -2,7 +2,7 @@
title: math abs
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the absolute value of a number.
usage: |
diff --git a/commands/docs/math_arccos.md b/commands/docs/math_arccos.md
index f62b2c40c99..701b95c2d50 100644
--- a/commands/docs/math_arccos.md
+++ b/commands/docs/math_arccos.md
@@ -2,7 +2,7 @@
title: math arccos
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the arccosine of the number.
usage: |
diff --git a/commands/docs/math_arccosh.md b/commands/docs/math_arccosh.md
index 6208344b782..0e77a2d0f31 100644
--- a/commands/docs/math_arccosh.md
+++ b/commands/docs/math_arccosh.md
@@ -2,7 +2,7 @@
title: math arccosh
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the inverse of the hyperbolic cosine function.
usage: |
diff --git a/commands/docs/math_arcsin.md b/commands/docs/math_arcsin.md
index b34358dd788..bf42aa47577 100644
--- a/commands/docs/math_arcsin.md
+++ b/commands/docs/math_arcsin.md
@@ -2,7 +2,7 @@
title: math arcsin
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the arcsine of the number.
usage: |
diff --git a/commands/docs/math_arcsinh.md b/commands/docs/math_arcsinh.md
index 2d7189f28f6..289e51affd4 100644
--- a/commands/docs/math_arcsinh.md
+++ b/commands/docs/math_arcsinh.md
@@ -2,7 +2,7 @@
title: math arcsinh
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the inverse of the hyperbolic sine function.
usage: |
diff --git a/commands/docs/math_arctan.md b/commands/docs/math_arctan.md
index cc9fafe1dfe..b6fcfbe1faf 100644
--- a/commands/docs/math_arctan.md
+++ b/commands/docs/math_arctan.md
@@ -2,7 +2,7 @@
title: math arctan
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the arctangent of the number.
usage: |
diff --git a/commands/docs/math_arctanh.md b/commands/docs/math_arctanh.md
index 6e0b3c77254..bdd733c5d75 100644
--- a/commands/docs/math_arctanh.md
+++ b/commands/docs/math_arctanh.md
@@ -2,7 +2,7 @@
title: math arctanh
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the inverse of the hyperbolic tangent function.
usage: |
diff --git a/commands/docs/math_avg.md b/commands/docs/math_avg.md
index 053e213d7cf..2569ce08b16 100644
--- a/commands/docs/math_avg.md
+++ b/commands/docs/math_avg.md
@@ -2,7 +2,7 @@
title: math avg
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the average of a list of numbers.
usage: |
diff --git a/commands/docs/math_ceil.md b/commands/docs/math_ceil.md
index 2c4d8ddc121..4730fddc576 100644
--- a/commands/docs/math_ceil.md
+++ b/commands/docs/math_ceil.md
@@ -2,7 +2,7 @@
title: math ceil
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the ceil of a number (smallest integer greater than or equal to that number).
usage: |
diff --git a/commands/docs/math_cos.md b/commands/docs/math_cos.md
index 3df18f3a8d1..d7a49cbecc1 100644
--- a/commands/docs/math_cos.md
+++ b/commands/docs/math_cos.md
@@ -2,7 +2,7 @@
title: math cos
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the cosine of the number.
usage: |
diff --git a/commands/docs/math_cosh.md b/commands/docs/math_cosh.md
index c5385d36f55..0b8dc23bf32 100644
--- a/commands/docs/math_cosh.md
+++ b/commands/docs/math_cosh.md
@@ -2,7 +2,7 @@
title: math cosh
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the hyperbolic cosine of the number.
usage: |
diff --git a/commands/docs/math_exp.md b/commands/docs/math_exp.md
index 507e2a20175..3e54138efeb 100644
--- a/commands/docs/math_exp.md
+++ b/commands/docs/math_exp.md
@@ -2,7 +2,7 @@
title: math exp
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns e raised to the power of x.
usage: |
diff --git a/commands/docs/math_floor.md b/commands/docs/math_floor.md
index 41564beb12f..5d78da44cad 100644
--- a/commands/docs/math_floor.md
+++ b/commands/docs/math_floor.md
@@ -2,7 +2,7 @@
title: math floor
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the floor of a number (largest integer less than or equal to that number).
usage: |
diff --git a/commands/docs/math_ln.md b/commands/docs/math_ln.md
index b1a8da29a55..5a5b03bce0c 100644
--- a/commands/docs/math_ln.md
+++ b/commands/docs/math_ln.md
@@ -2,7 +2,7 @@
title: math ln
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the natural logarithm. Base: (math e).
usage: |
diff --git a/commands/docs/math_log.md b/commands/docs/math_log.md
index e6d0ead4071..9745f13cc95 100644
--- a/commands/docs/math_log.md
+++ b/commands/docs/math_log.md
@@ -2,7 +2,7 @@
title: math log
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the logarithm for an arbitrary base.
usage: |
diff --git a/commands/docs/math_max.md b/commands/docs/math_max.md
index dc5da45895a..aca846a2964 100644
--- a/commands/docs/math_max.md
+++ b/commands/docs/math_max.md
@@ -2,7 +2,7 @@
title: math max
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the maximum of a list of values, or of columns in a table.
usage: |
diff --git a/commands/docs/math_median.md b/commands/docs/math_median.md
index 979d908c6f0..67fd2a80457 100644
--- a/commands/docs/math_median.md
+++ b/commands/docs/math_median.md
@@ -2,7 +2,7 @@
title: math median
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Computes the median of a list of numbers.
usage: |
diff --git a/commands/docs/math_min.md b/commands/docs/math_min.md
index 60d6b372800..9c61c7665fc 100644
--- a/commands/docs/math_min.md
+++ b/commands/docs/math_min.md
@@ -2,7 +2,7 @@
title: math min
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Finds the minimum within a list of values or tables.
usage: |
diff --git a/commands/docs/math_mode.md b/commands/docs/math_mode.md
index 6976eb96ece..7f59f8e9a1d 100644
--- a/commands/docs/math_mode.md
+++ b/commands/docs/math_mode.md
@@ -2,7 +2,7 @@
title: math mode
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the most frequent element(s) from a list of numbers or tables.
usage: |
diff --git a/commands/docs/math_product.md b/commands/docs/math_product.md
index 264e03e4e08..b98551fc692 100644
--- a/commands/docs/math_product.md
+++ b/commands/docs/math_product.md
@@ -2,7 +2,7 @@
title: math product
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the product of a list of numbers or the products of each column of a table.
usage: |
diff --git a/commands/docs/math_round.md b/commands/docs/math_round.md
index 31f936dceb4..59e0fe5573e 100644
--- a/commands/docs/math_round.md
+++ b/commands/docs/math_round.md
@@ -2,7 +2,7 @@
title: math round
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the input number rounded to the specified precision.
usage: |
diff --git a/commands/docs/math_sin.md b/commands/docs/math_sin.md
index f3dd6ddfa27..ccb9289c12d 100644
--- a/commands/docs/math_sin.md
+++ b/commands/docs/math_sin.md
@@ -2,7 +2,7 @@
title: math sin
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the sine of the number.
usage: |
diff --git a/commands/docs/math_sinh.md b/commands/docs/math_sinh.md
index 3ec078faa55..1705ed8311e 100644
--- a/commands/docs/math_sinh.md
+++ b/commands/docs/math_sinh.md
@@ -2,7 +2,7 @@
title: math sinh
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the hyperbolic sine of the number.
usage: |
diff --git a/commands/docs/math_sqrt.md b/commands/docs/math_sqrt.md
index 699e5bff279..a03151e1e16 100644
--- a/commands/docs/math_sqrt.md
+++ b/commands/docs/math_sqrt.md
@@ -2,7 +2,7 @@
title: math sqrt
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the square root of the input number.
usage: |
diff --git a/commands/docs/math_stddev.md b/commands/docs/math_stddev.md
index 2258cd5a1aa..f96312039df 100644
--- a/commands/docs/math_stddev.md
+++ b/commands/docs/math_stddev.md
@@ -2,7 +2,7 @@
title: math stddev
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the standard deviation of a list of numbers, or of each column in a table.
usage: |
diff --git a/commands/docs/math_sum.md b/commands/docs/math_sum.md
index a8492185429..fee0d082f61 100644
--- a/commands/docs/math_sum.md
+++ b/commands/docs/math_sum.md
@@ -2,7 +2,7 @@
title: math sum
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the sum of a list of numbers or of each column in a table.
usage: |
diff --git a/commands/docs/math_tan.md b/commands/docs/math_tan.md
index bd884cd0663..3ab8f9256fb 100644
--- a/commands/docs/math_tan.md
+++ b/commands/docs/math_tan.md
@@ -2,7 +2,7 @@
title: math tan
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the tangent of the number.
usage: |
diff --git a/commands/docs/math_tanh.md b/commands/docs/math_tanh.md
index f9c3a669178..735bb8385f9 100644
--- a/commands/docs/math_tanh.md
+++ b/commands/docs/math_tanh.md
@@ -2,7 +2,7 @@
title: math tanh
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the hyperbolic tangent of the number.
usage: |
diff --git a/commands/docs/math_variance.md b/commands/docs/math_variance.md
index 3be9aeee4e5..c71ee65b089 100644
--- a/commands/docs/math_variance.md
+++ b/commands/docs/math_variance.md
@@ -2,7 +2,7 @@
title: math variance
categories: |
math
-version: 0.98.0
+version: 0.99.0
math: |
Returns the variance of a list of numbers or of each column in a table.
usage: |
diff --git a/commands/docs/merge.md b/commands/docs/merge.md
index 3dadeb0e0b8..0202edba93c 100644
--- a/commands/docs/merge.md
+++ b/commands/docs/merge.md
@@ -2,7 +2,7 @@
title: merge
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Merge the input with a record or table, overwriting values in matching columns.
usage: |
@@ -31,16 +31,16 @@ usage: |
| table | table |
## Examples
-Add an 'index' column to the input table
+Add an 'id' column to the input table
```nu
-> [a b c] | wrap name | merge ( [1 2 3] | wrap index )
-╭───┬──────╮
-│ # │ name │
-├───┼──────┤
-│ 1 │ a │
-│ 2 │ b │
-│ 3 │ c │
-╰───┴──────╯
+> [a b c] | wrap name | merge ( [47 512 618] | wrap id )
+╭───┬──────┬─────╮
+│ # │ name │ id │
+├───┼──────┼─────┤
+│ 0 │ a │ 47 │
+│ 1 │ b │ 512 │
+│ 2 │ c │ 618 │
+╰───┴──────┴─────╯
```
diff --git a/commands/docs/metadata.md b/commands/docs/metadata.md
index bfac02ef8c1..217f0aa5216 100644
--- a/commands/docs/metadata.md
+++ b/commands/docs/metadata.md
@@ -2,7 +2,7 @@
title: metadata
categories: |
debug
-version: 0.98.0
+version: 0.99.0
debug: |
Get the metadata for items in the stream.
usage: |
diff --git a/commands/docs/metadata_access.md b/commands/docs/metadata_access.md
index 7bf30d365ff..3ea7f2686e3 100644
--- a/commands/docs/metadata_access.md
+++ b/commands/docs/metadata_access.md
@@ -2,7 +2,7 @@
title: metadata access
categories: |
debug
-version: 0.98.0
+version: 0.99.0
debug: |
Access the metadata for the input stream within a closure.
usage: |
diff --git a/commands/docs/metadata_set.md b/commands/docs/metadata_set.md
index 8222388c580..36030b06cc3 100644
--- a/commands/docs/metadata_set.md
+++ b/commands/docs/metadata_set.md
@@ -2,7 +2,7 @@
title: metadata set
categories: |
debug
-version: 0.98.0
+version: 0.99.0
debug: |
Set the metadata for items in the stream.
usage: |
diff --git a/commands/docs/mkdir.md b/commands/docs/mkdir.md
index 2fbeb81c005..b831f687f8e 100644
--- a/commands/docs/mkdir.md
+++ b/commands/docs/mkdir.md
@@ -2,7 +2,7 @@
title: mkdir
categories: |
filesystem
-version: 0.98.0
+version: 0.99.0
filesystem: |
Create directories, with intermediary directories if required using uutils/coreutils mkdir.
usage: |
diff --git a/commands/docs/mktemp.md b/commands/docs/mktemp.md
index ceb5d5b7aa6..84f546a92df 100644
--- a/commands/docs/mktemp.md
+++ b/commands/docs/mktemp.md
@@ -2,7 +2,7 @@
title: mktemp
categories: |
filesystem
-version: 0.98.0
+version: 0.99.0
filesystem: |
Create temporary files or directories using uutils/coreutils mktemp.
usage: |
diff --git a/commands/docs/module.md b/commands/docs/module.md
index de347932f45..b90726f43b6 100644
--- a/commands/docs/module.md
+++ b/commands/docs/module.md
@@ -2,7 +2,7 @@
title: module
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Define a custom module.
usage: |
diff --git a/commands/docs/move.md b/commands/docs/move.md
index c3969327aa6..17e46d6311b 100644
--- a/commands/docs/move.md
+++ b/commands/docs/move.md
@@ -2,7 +2,7 @@
title: move
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Move columns before or after other columns.
usage: |
diff --git a/commands/docs/mut.md b/commands/docs/mut.md
index 27fe2acbb89..bf851d46edd 100644
--- a/commands/docs/mut.md
+++ b/commands/docs/mut.md
@@ -2,7 +2,7 @@
title: mut
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Create a mutable variable and give it a value.
usage: |
diff --git a/commands/docs/mv.md b/commands/docs/mv.md
index e85b7d4d8e7..c11d21a85f4 100644
--- a/commands/docs/mv.md
+++ b/commands/docs/mv.md
@@ -2,7 +2,7 @@
title: mv
categories: |
filesystem
-version: 0.98.0
+version: 0.99.0
filesystem: |
Move files or directories using uutils/coreutils mv.
usage: |
diff --git a/commands/docs/n.md b/commands/docs/n.md
deleted file mode 100644
index 3e9bd7128d5..00000000000
--- a/commands/docs/n.md
+++ /dev/null
@@ -1,32 +0,0 @@
----
-title: n
-categories: |
- shells
-version: 0.98.0
-shells: |
- Switch to the next shell.
-usage: |
- Switch to the next shell.
----
-
-# `n` for [shells](/commands/categories/shells.md)
-
-Switch to the next shell.
-
-## Signature
-
-```> n ```
-
-## Examples
-
-Make two directories and enter new shells for them, use `n` to jump to the next shell
-```nu
-> mkdir foo bar; enter foo; enter ../bar; n
-
-```
-
-Run `n` several times and note the changes of current directory
-```nu
-> n
-
-```
diff --git a/commands/docs/nu-check.md b/commands/docs/nu-check.md
index b7eb4a25531..7709610d384 100644
--- a/commands/docs/nu-check.md
+++ b/commands/docs/nu-check.md
@@ -2,7 +2,7 @@
title: nu-check
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Validate and parse input content.
usage: |
diff --git a/commands/docs/nu-highlight.md b/commands/docs/nu-highlight.md
index 2a9d8286bed..fd7347b05c4 100644
--- a/commands/docs/nu-highlight.md
+++ b/commands/docs/nu-highlight.md
@@ -2,7 +2,7 @@
title: nu-highlight
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Syntax highlight the input string.
usage: |
diff --git a/commands/docs/open.md b/commands/docs/open.md
index 302d790275e..8b78172f8e8 100644
--- a/commands/docs/open.md
+++ b/commands/docs/open.md
@@ -2,7 +2,7 @@
title: open
categories: |
filesystem
-version: 0.98.0
+version: 0.99.0
filesystem: |
Load a file into a cell, converting to table if possible (avoid by appending '--raw').
usage: |
diff --git a/commands/docs/overlay.md b/commands/docs/overlay.md
index a976f8839e6..9d9ee665c32 100644
--- a/commands/docs/overlay.md
+++ b/commands/docs/overlay.md
@@ -2,7 +2,7 @@
title: overlay
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Commands for manipulating overlays.
usage: |
diff --git a/commands/docs/overlay_hide.md b/commands/docs/overlay_hide.md
index 713f62e2b8c..47d3053e6d0 100644
--- a/commands/docs/overlay_hide.md
+++ b/commands/docs/overlay_hide.md
@@ -2,7 +2,7 @@
title: overlay hide
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Hide an active overlay.
usage: |
diff --git a/commands/docs/overlay_list.md b/commands/docs/overlay_list.md
index 68582a42983..8cf62a62ead 100644
--- a/commands/docs/overlay_list.md
+++ b/commands/docs/overlay_list.md
@@ -2,7 +2,7 @@
title: overlay list
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
List all active overlays.
usage: |
diff --git a/commands/docs/overlay_new.md b/commands/docs/overlay_new.md
index 2a6db1d6f72..c64269d78c6 100644
--- a/commands/docs/overlay_new.md
+++ b/commands/docs/overlay_new.md
@@ -2,7 +2,7 @@
title: overlay new
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Create an empty overlay.
usage: |
diff --git a/commands/docs/overlay_use.md b/commands/docs/overlay_use.md
index 91da02273d8..b3d53a4282c 100644
--- a/commands/docs/overlay_use.md
+++ b/commands/docs/overlay_use.md
@@ -2,7 +2,7 @@
title: overlay use
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Use definitions from a module as an overlay.
usage: |
diff --git a/commands/docs/p.md b/commands/docs/p.md
deleted file mode 100644
index 2d987ceecdb..00000000000
--- a/commands/docs/p.md
+++ /dev/null
@@ -1,32 +0,0 @@
----
-title: p
-categories: |
- shells
-version: 0.98.0
-shells: |
- Switch to the previous shell.
-usage: |
- Switch to the previous shell.
----
-
-# `p` for [shells](/commands/categories/shells.md)
-
-Switch to the previous shell.
-
-## Signature
-
-```> p ```
-
-## Examples
-
-Make two directories and enter new shells for them, use `p` to jump to the previous shell
-```nu
-> mkdir foo bar; enter foo; enter ../bar; p
-
-```
-
-Run `p` several times and note the changes of current directory
-```nu
-> p
-
-```
diff --git a/commands/docs/panic.md b/commands/docs/panic.md
index dd5b9cebb4e..fef25c1b413 100644
--- a/commands/docs/panic.md
+++ b/commands/docs/panic.md
@@ -2,7 +2,7 @@
title: panic
categories: |
debug
-version: 0.98.0
+version: 0.99.0
debug: |
Causes nushell to panic.
usage: |
diff --git a/commands/docs/par-each.md b/commands/docs/par-each.md
index e1865634474..5302cb0efaa 100644
--- a/commands/docs/par-each.md
+++ b/commands/docs/par-each.md
@@ -2,7 +2,7 @@
title: par-each
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Run a closure on each row of the input list in parallel, creating a new list with the results.
usage: |
diff --git a/commands/docs/parse.md b/commands/docs/parse.md
index 85de1eace7f..4b9aad0cf6e 100644
--- a/commands/docs/parse.md
+++ b/commands/docs/parse.md
@@ -2,7 +2,7 @@
title: parse
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Parse columns from string data using a simple pattern or a supplied regular expression.
usage: |
diff --git a/commands/docs/path.md b/commands/docs/path.md
index 49a27ff7a26..893fc8c8735 100644
--- a/commands/docs/path.md
+++ b/commands/docs/path.md
@@ -2,7 +2,7 @@
title: path
categories: |
path
-version: 0.98.0
+version: 0.99.0
path: |
Explore and manipulate paths.
usage: |
diff --git a/commands/docs/path_basename.md b/commands/docs/path_basename.md
index 8783ad1e4d9..5be95f0d12b 100644
--- a/commands/docs/path_basename.md
+++ b/commands/docs/path_basename.md
@@ -2,7 +2,7 @@
title: path basename
categories: |
path
-version: 0.98.0
+version: 0.99.0
path: |
Get the final component of a path.
usage: |
diff --git a/commands/docs/path_dirname.md b/commands/docs/path_dirname.md
index 88a6fd1fdef..c31f4472dc6 100644
--- a/commands/docs/path_dirname.md
+++ b/commands/docs/path_dirname.md
@@ -2,7 +2,7 @@
title: path dirname
categories: |
path
-version: 0.98.0
+version: 0.99.0
path: |
Get the parent directory of a path.
usage: |
diff --git a/commands/docs/path_exists.md b/commands/docs/path_exists.md
index d718663783c..ed5ef08f8f2 100644
--- a/commands/docs/path_exists.md
+++ b/commands/docs/path_exists.md
@@ -2,7 +2,7 @@
title: path exists
categories: |
path
-version: 0.98.0
+version: 0.99.0
path: |
Check whether a path exists.
usage: |
diff --git a/commands/docs/path_expand.md b/commands/docs/path_expand.md
index 4ffe242a92c..bf30dd8fd0a 100644
--- a/commands/docs/path_expand.md
+++ b/commands/docs/path_expand.md
@@ -2,7 +2,7 @@
title: path expand
categories: |
path
-version: 0.98.0
+version: 0.99.0
path: |
Try to expand a path to its absolute form.
usage: |
diff --git a/commands/docs/path_join.md b/commands/docs/path_join.md
index 15a45193e89..3c86d2e68ba 100644
--- a/commands/docs/path_join.md
+++ b/commands/docs/path_join.md
@@ -2,7 +2,7 @@
title: path join
categories: |
path
-version: 0.98.0
+version: 0.99.0
path: |
Join a structured path or a list of path parts.
usage: |
diff --git a/commands/docs/path_parse.md b/commands/docs/path_parse.md
index a00bbf740e1..8c5b270812c 100644
--- a/commands/docs/path_parse.md
+++ b/commands/docs/path_parse.md
@@ -2,7 +2,7 @@
title: path parse
categories: |
path
-version: 0.98.0
+version: 0.99.0
path: |
Convert a path into structured data.
usage: |
diff --git a/commands/docs/path_relative-to.md b/commands/docs/path_relative-to.md
index f356e55120c..d25062d3dcf 100644
--- a/commands/docs/path_relative-to.md
+++ b/commands/docs/path_relative-to.md
@@ -2,7 +2,7 @@
title: path relative-to
categories: |
path
-version: 0.98.0
+version: 0.99.0
path: |
Express a path as relative to another path.
usage: |
diff --git a/commands/docs/path_split.md b/commands/docs/path_split.md
index 210645d087b..a6f4c542613 100644
--- a/commands/docs/path_split.md
+++ b/commands/docs/path_split.md
@@ -2,7 +2,7 @@
title: path split
categories: |
path
-version: 0.98.0
+version: 0.99.0
path: |
Split a path into a list based on the system's path separator.
usage: |
diff --git a/commands/docs/path_type.md b/commands/docs/path_type.md
index bb225c43261..e680de293b6 100644
--- a/commands/docs/path_type.md
+++ b/commands/docs/path_type.md
@@ -2,7 +2,7 @@
title: path type
categories: |
path
-version: 0.98.0
+version: 0.99.0
path: |
Get the type of the object a path refers to (e.g., file, dir, symlink).
usage: |
diff --git a/commands/docs/plugin.md b/commands/docs/plugin.md
index 8cc09493173..2b4538c2372 100644
--- a/commands/docs/plugin.md
+++ b/commands/docs/plugin.md
@@ -2,7 +2,7 @@
title: plugin
categories: |
plugin
-version: 0.98.0
+version: 0.99.0
plugin: |
Commands for managing plugins.
usage: |
diff --git a/commands/docs/plugin_add.md b/commands/docs/plugin_add.md
index 75b9f592982..3bbdafb0f73 100644
--- a/commands/docs/plugin_add.md
+++ b/commands/docs/plugin_add.md
@@ -2,7 +2,7 @@
title: plugin add
categories: |
plugin
-version: 0.98.0
+version: 0.99.0
plugin: |
Add a plugin to the plugin registry file.
usage: |
diff --git a/commands/docs/plugin_list.md b/commands/docs/plugin_list.md
index 30b679fe7e5..78040c5048b 100644
--- a/commands/docs/plugin_list.md
+++ b/commands/docs/plugin_list.md
@@ -2,7 +2,7 @@
title: plugin list
categories: |
plugin
-version: 0.98.0
+version: 0.99.0
plugin: |
List installed plugins.
usage: |
@@ -33,7 +33,7 @@ List installed plugins.
╭───┬──────┬─────────┬────────────┬────────┬───────────────────────────────┬───────┬─────────────╮
│ # │ name │ version │ is_running │ pid │ filename │ shell │ commands │
├───┼──────┼─────────┼────────────┼────────┼───────────────────────────────┼───────┼─────────────┤
-│ 0 │ inc │ 0.98.0 │ true │ 106480 │ /opt/nu/plugins/nu_plugin_inc │ │ ╭───┬─────╮ │
+│ 0 │ inc │ 0.99.0 │ true │ 106480 │ /opt/nu/plugins/nu_plugin_inc │ │ ╭───┬─────╮ │
│ │ │ │ │ │ │ │ │ 0 │ inc │ │
│ │ │ │ │ │ │ │ ╰───┴─────╯ │
╰───┴──────┴─────────┴────────────┴────────┴───────────────────────────────┴───────┴─────────────╯
diff --git a/commands/docs/plugin_rm.md b/commands/docs/plugin_rm.md
index 0a350ac1ba5..3a627d85271 100644
--- a/commands/docs/plugin_rm.md
+++ b/commands/docs/plugin_rm.md
@@ -2,7 +2,7 @@
title: plugin rm
categories: |
plugin
-version: 0.98.0
+version: 0.99.0
plugin: |
Remove a plugin from the plugin registry file.
usage: |
diff --git a/commands/docs/plugin_stop.md b/commands/docs/plugin_stop.md
index 3a4491e2b76..b4f7dfca777 100644
--- a/commands/docs/plugin_stop.md
+++ b/commands/docs/plugin_stop.md
@@ -2,7 +2,7 @@
title: plugin stop
categories: |
plugin
-version: 0.98.0
+version: 0.99.0
plugin: |
Stop an installed plugin if it was running.
usage: |
diff --git a/commands/docs/plugin_use.md b/commands/docs/plugin_use.md
index 6e30ca2dce9..ded3ce50083 100644
--- a/commands/docs/plugin_use.md
+++ b/commands/docs/plugin_use.md
@@ -2,7 +2,7 @@
title: plugin use
categories: |
plugin
-version: 0.98.0
+version: 0.99.0
plugin: |
Load a plugin from the plugin registry file into scope.
usage: |
diff --git a/commands/docs/polars.md b/commands/docs/polars.md
index 120b940d765..6c5479ceaa9 100644
--- a/commands/docs/polars.md
+++ b/commands/docs/polars.md
@@ -2,7 +2,7 @@
title: polars
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Operate with data in a dataframe format.
usage: |
@@ -36,114 +36,118 @@ You must use one of the following subcommands. Using this command as-is will onl
## Subcommands:
-| name | description | type |
-| -------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------ |
-| [`polars agg`](/commands/docs/polars_agg.md) | Performs a series of aggregations from a group-by. | plugin |
-| [`polars agg-groups`](/commands/docs/polars_agg-groups.md) | Creates an agg_groups expression. | plugin |
-| [`polars all-false`](/commands/docs/polars_all-false.md) | Returns true if all values are false. | plugin |
-| [`polars all-true`](/commands/docs/polars_all-true.md) | Returns true if all values are true. | plugin |
-| [`polars append`](/commands/docs/polars_append.md) | Appends a new dataframe. | plugin |
-| [`polars arg-max`](/commands/docs/polars_arg-max.md) | Return index for max value in series. | plugin |
-| [`polars arg-min`](/commands/docs/polars_arg-min.md) | Return index for min value in series. | plugin |
-| [`polars arg-sort`](/commands/docs/polars_arg-sort.md) | Returns indexes for a sorted series. | plugin |
-| [`polars arg-true`](/commands/docs/polars_arg-true.md) | Returns indexes where values are true. | plugin |
-| [`polars arg-unique`](/commands/docs/polars_arg-unique.md) | Returns indexes for unique values. | plugin |
-| [`polars arg-where`](/commands/docs/polars_arg-where.md) | Creates an expression that returns the arguments where expression is true. | plugin |
-| [`polars as`](/commands/docs/polars_as.md) | Creates an alias expression. | plugin |
-| [`polars as-date`](/commands/docs/polars_as-date.md) | Converts string to date. | plugin |
-| [`polars as-datetime`](/commands/docs/polars_as-datetime.md) | Converts string to datetime. | plugin |
-| [`polars cache`](/commands/docs/polars_cache.md) | Caches operations in a new LazyFrame. | plugin |
-| [`polars cast`](/commands/docs/polars_cast.md) | Cast a column to a different dtype. | plugin |
-| [`polars col`](/commands/docs/polars_col.md) | Creates a named column expression. | plugin |
-| [`polars collect`](/commands/docs/polars_collect.md) | Collect lazy dataframe into eager dataframe. | plugin |
-| [`polars columns`](/commands/docs/polars_columns.md) | Show dataframe columns. | plugin |
-| [`polars concat-str`](/commands/docs/polars_concat-str.md) | Creates a concat string expression. | plugin |
-| [`polars contains`](/commands/docs/polars_contains.md) | Checks if a pattern is contained in a string. | plugin |
-| [`polars count`](/commands/docs/polars_count.md) | Returns the number of non-null values in the column. | plugin |
-| [`polars count-null`](/commands/docs/polars_count-null.md) | Counts null values. | plugin |
-| [`polars cumulative`](/commands/docs/polars_cumulative.md) | Cumulative calculation for a column or series. | plugin |
-| [`polars datepart`](/commands/docs/polars_datepart.md) | Creates an expression for capturing the specified datepart in a column. | plugin |
-| [`polars decimal`](/commands/docs/polars_decimal.md) | Converts a string column into a decimal column | plugin |
-| [`polars drop`](/commands/docs/polars_drop.md) | Creates a new dataframe by dropping the selected columns. | plugin |
-| [`polars drop-duplicates`](/commands/docs/polars_drop-duplicates.md) | Drops duplicate values in dataframe. | plugin |
-| [`polars drop-nulls`](/commands/docs/polars_drop-nulls.md) | Drops null values in dataframe. | plugin |
-| [`polars dummies`](/commands/docs/polars_dummies.md) | Creates a new dataframe with dummy variables. | plugin |
-| [`polars explode`](/commands/docs/polars_explode.md) | Explodes a dataframe or creates a explode expression. | plugin |
-| [`polars expr-not`](/commands/docs/polars_expr-not.md) | Creates a not expression. | plugin |
-| [`polars fetch`](/commands/docs/polars_fetch.md) | Collects the lazyframe to the selected rows. | plugin |
-| [`polars fill-nan`](/commands/docs/polars_fill-nan.md) | Replaces NaN values with the given expression. | plugin |
-| [`polars fill-null`](/commands/docs/polars_fill-null.md) | Replaces NULL values with the given expression. | plugin |
-| [`polars filter`](/commands/docs/polars_filter.md) | Filter dataframe based in expression. | plugin |
-| [`polars filter-with`](/commands/docs/polars_filter-with.md) | Filters dataframe using a mask or expression as reference. | plugin |
-| [`polars first`](/commands/docs/polars_first.md) | Show only the first number of rows or create a first expression | plugin |
-| [`polars flatten`](/commands/docs/polars_flatten.md) | An alias for polars explode. | plugin |
-| [`polars get`](/commands/docs/polars_get.md) | Creates dataframe with the selected columns. | plugin |
-| [`polars get-day`](/commands/docs/polars_get-day.md) | Gets day from date. | plugin |
-| [`polars get-hour`](/commands/docs/polars_get-hour.md) | Gets hour from date. | plugin |
-| [`polars get-minute`](/commands/docs/polars_get-minute.md) | Gets minute from date. | plugin |
-| [`polars get-month`](/commands/docs/polars_get-month.md) | Gets month from date. | plugin |
-| [`polars get-nanosecond`](/commands/docs/polars_get-nanosecond.md) | Gets nanosecond from date. | plugin |
-| [`polars get-ordinal`](/commands/docs/polars_get-ordinal.md) | Gets ordinal from date. | plugin |
-| [`polars get-second`](/commands/docs/polars_get-second.md) | Gets second from date. | plugin |
-| [`polars get-week`](/commands/docs/polars_get-week.md) | Gets week from date. | plugin |
-| [`polars get-weekday`](/commands/docs/polars_get-weekday.md) | Gets weekday from date. | plugin |
-| [`polars get-year`](/commands/docs/polars_get-year.md) | Gets year from date. | plugin |
-| [`polars group-by`](/commands/docs/polars_group-by.md) | Creates a group-by object that can be used for other aggregations. | plugin |
-| [`polars implode`](/commands/docs/polars_implode.md) | Aggregates values into a list. | plugin |
-| [`polars integer`](/commands/docs/polars_integer.md) | Converts a string column into a integer column | plugin |
-| [`polars into-df`](/commands/docs/polars_into-df.md) | Converts a list, table or record into a dataframe. | plugin |
-| [`polars into-lazy`](/commands/docs/polars_into-lazy.md) | Converts a dataframe into a lazy dataframe. | plugin |
-| [`polars into-nu`](/commands/docs/polars_into-nu.md) | Converts a dataframe or an expression into nushell value for access and exploration. | plugin |
-| [`polars is-duplicated`](/commands/docs/polars_is-duplicated.md) | Creates mask indicating duplicated values. | plugin |
-| [`polars is-in`](/commands/docs/polars_is-in.md) | Creates an is-in expression or checks to see if the elements are contained in the right series | plugin |
-| [`polars is-not-null`](/commands/docs/polars_is-not-null.md) | Creates mask where value is not null. | plugin |
-| [`polars is-null`](/commands/docs/polars_is-null.md) | Creates mask where value is null. | plugin |
-| [`polars is-unique`](/commands/docs/polars_is-unique.md) | Creates mask indicating unique values. | plugin |
-| [`polars join`](/commands/docs/polars_join.md) | Joins a lazy frame with other lazy frame. | plugin |
-| [`polars last`](/commands/docs/polars_last.md) | Creates new dataframe with tail rows or creates a last expression. | plugin |
-| [`polars lit`](/commands/docs/polars_lit.md) | Creates a literal expression. | plugin |
-| [`polars lowercase`](/commands/docs/polars_lowercase.md) | Lowercase the strings in the column. | plugin |
-| [`polars max`](/commands/docs/polars_max.md) | Creates a max expression or aggregates columns to their max value. | plugin |
-| [`polars mean`](/commands/docs/polars_mean.md) | Creates a mean expression for an aggregation or aggregates columns to their mean value. | plugin |
-| [`polars median`](/commands/docs/polars_median.md) | Median value from columns in a dataframe or creates expression for an aggregation | plugin |
-| [`polars min`](/commands/docs/polars_min.md) | Creates a min expression or aggregates columns to their min value. | plugin |
-| [`polars n-unique`](/commands/docs/polars_n-unique.md) | Counts unique values. | plugin |
-| [`polars not`](/commands/docs/polars_not.md) | Inverts boolean mask. | plugin |
-| [`polars open`](/commands/docs/polars_open.md) | Opens CSV, JSON, NDJSON/JSON lines, arrow, avro, or parquet file to create dataframe. A lazy dataframe will be created by default, if supported. | plugin |
-| [`polars otherwise`](/commands/docs/polars_otherwise.md) | Completes a when expression. | plugin |
-| [`polars pivot`](/commands/docs/polars_pivot.md) | Pivot a DataFrame from wide to long format. | plugin |
-| [`polars quantile`](/commands/docs/polars_quantile.md) | Aggregates the columns to the selected quantile. | plugin |
-| [`polars query`](/commands/docs/polars_query.md) | Query dataframe using SQL. Note: The dataframe is always named 'df' in your query's from clause. | plugin |
-| [`polars rename`](/commands/docs/polars_rename.md) | Rename a dataframe column. | plugin |
-| [`polars replace`](/commands/docs/polars_replace.md) | Replace the leftmost (sub)string by a regex pattern. | plugin |
-| [`polars replace-all`](/commands/docs/polars_replace-all.md) | Replace all (sub)strings by a regex pattern. | plugin |
-| [`polars reverse`](/commands/docs/polars_reverse.md) | Reverses the LazyFrame | plugin |
-| [`polars rolling`](/commands/docs/polars_rolling.md) | Rolling calculation for a series. | plugin |
-| [`polars sample`](/commands/docs/polars_sample.md) | Create sample dataframe. | plugin |
-| [`polars save`](/commands/docs/polars_save.md) | Saves a dataframe to disk. For lazy dataframes a sink operation will be used if the file type supports it (parquet, ipc/arrow, csv, and ndjson). | plugin |
-| [`polars schema`](/commands/docs/polars_schema.md) | Show schema for a dataframe. | plugin |
-| [`polars select`](/commands/docs/polars_select.md) | Selects columns from lazyframe. | plugin |
-| [`polars set`](/commands/docs/polars_set.md) | Sets value where given mask is true. | plugin |
-| [`polars set-with-idx`](/commands/docs/polars_set-with-idx.md) | Sets value in the given index. | plugin |
-| [`polars shape`](/commands/docs/polars_shape.md) | Shows column and row size for a dataframe. | plugin |
-| [`polars shift`](/commands/docs/polars_shift.md) | Shifts the values by a given period. | plugin |
-| [`polars slice`](/commands/docs/polars_slice.md) | Creates new dataframe from a slice of rows. | plugin |
-| [`polars sort-by`](/commands/docs/polars_sort-by.md) | Sorts a lazy dataframe based on expression(s). | plugin |
-| [`polars std`](/commands/docs/polars_std.md) | Creates a std expression for an aggregation of std value from columns in a dataframe. | plugin |
-| [`polars store-get`](/commands/docs/polars_store-get.md) | Gets a Dataframe or other object from the plugin cache. | plugin |
-| [`polars store-ls`](/commands/docs/polars_store-ls.md) | Lists stored polars objects. | plugin |
-| [`polars store-rm`](/commands/docs/polars_store-rm.md) | Removes a stored Dataframe or other object from the plugin cache. | plugin |
-| [`polars str-join`](/commands/docs/polars_str-join.md) | Concatenates strings within a column or dataframes | plugin |
-| [`polars str-lengths`](/commands/docs/polars_str-lengths.md) | Get lengths of all strings. | plugin |
-| [`polars str-slice`](/commands/docs/polars_str-slice.md) | Slices the string from the start position until the selected length. | plugin |
-| [`polars strftime`](/commands/docs/polars_strftime.md) | Formats date based on string rule. | plugin |
-| [`polars sum`](/commands/docs/polars_sum.md) | Creates a sum expression for an aggregation or aggregates columns to their sum value. | plugin |
-| [`polars summary`](/commands/docs/polars_summary.md) | For a dataframe, produces descriptive statistics (summary statistics) for its numeric columns. | plugin |
-| [`polars take`](/commands/docs/polars_take.md) | Creates new dataframe using the given indices. | plugin |
-| [`polars unique`](/commands/docs/polars_unique.md) | Returns unique values from a dataframe. | plugin |
-| [`polars unpivot`](/commands/docs/polars_unpivot.md) | Unpivot a DataFrame from wide to long format. | plugin |
-| [`polars uppercase`](/commands/docs/polars_uppercase.md) | Uppercase the strings in the column. | plugin |
-| [`polars value-counts`](/commands/docs/polars_value-counts.md) | Returns a dataframe with the counts for unique values in series. | plugin |
-| [`polars var`](/commands/docs/polars_var.md) | Create a var expression for an aggregation. | plugin |
-| [`polars when`](/commands/docs/polars_when.md) | Creates and modifies a when expression. | plugin |
-| [`polars with-column`](/commands/docs/polars_with-column.md) | Adds a series to the dataframe. | plugin |
\ No newline at end of file
+| name | description | type |
+| -------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------ |
+| [`polars agg`](/commands/docs/polars_agg.md) | Performs a series of aggregations from a group-by. | plugin |
+| [`polars agg-groups`](/commands/docs/polars_agg-groups.md) | Creates an agg_groups expression. | plugin |
+| [`polars all-false`](/commands/docs/polars_all-false.md) | Returns true if all values are false. | plugin |
+| [`polars all-true`](/commands/docs/polars_all-true.md) | Returns true if all values are true. | plugin |
+| [`polars append`](/commands/docs/polars_append.md) | Appends a new dataframe. | plugin |
+| [`polars arg-max`](/commands/docs/polars_arg-max.md) | Return index for max value in series. | plugin |
+| [`polars arg-min`](/commands/docs/polars_arg-min.md) | Return index for min value in series. | plugin |
+| [`polars arg-sort`](/commands/docs/polars_arg-sort.md) | Returns indexes for a sorted series. | plugin |
+| [`polars arg-true`](/commands/docs/polars_arg-true.md) | Returns indexes where values are true. | plugin |
+| [`polars arg-unique`](/commands/docs/polars_arg-unique.md) | Returns indexes for unique values. | plugin |
+| [`polars arg-where`](/commands/docs/polars_arg-where.md) | Creates an expression that returns the arguments where expression is true. | plugin |
+| [`polars as`](/commands/docs/polars_as.md) | Creates an alias expression. | plugin |
+| [`polars as-date`](/commands/docs/polars_as-date.md) | Converts string to date. | plugin |
+| [`polars as-datetime`](/commands/docs/polars_as-datetime.md) | Converts string to datetime. | plugin |
+| [`polars cache`](/commands/docs/polars_cache.md) | Caches operations in a new LazyFrame. | plugin |
+| [`polars cast`](/commands/docs/polars_cast.md) | Cast a column to a different dtype. | plugin |
+| [`polars col`](/commands/docs/polars_col.md) | Creates a named column expression. | plugin |
+| [`polars collect`](/commands/docs/polars_collect.md) | Collect lazy dataframe into eager dataframe. | plugin |
+| [`polars columns`](/commands/docs/polars_columns.md) | Show dataframe columns. | plugin |
+| [`polars concat`](/commands/docs/polars_concat.md) | Concatenate two or more dataframes. | plugin |
+| [`polars concat-str`](/commands/docs/polars_concat-str.md) | Creates a concat string expression. | plugin |
+| [`polars contains`](/commands/docs/polars_contains.md) | Checks if a pattern is contained in a string. | plugin |
+| [`polars count`](/commands/docs/polars_count.md) | Returns the number of non-null values in the column. | plugin |
+| [`polars count-null`](/commands/docs/polars_count-null.md) | Counts null values. | plugin |
+| [`polars cumulative`](/commands/docs/polars_cumulative.md) | Cumulative calculation for a column or series. | plugin |
+| [`polars datepart`](/commands/docs/polars_datepart.md) | Creates an expression for capturing the specified datepart in a column. | plugin |
+| [`polars decimal`](/commands/docs/polars_decimal.md) | Converts a string column into a decimal column | plugin |
+| [`polars drop`](/commands/docs/polars_drop.md) | Creates a new dataframe by dropping the selected columns. | plugin |
+| [`polars drop-duplicates`](/commands/docs/polars_drop-duplicates.md) | Drops duplicate values in dataframe. | plugin |
+| [`polars drop-nulls`](/commands/docs/polars_drop-nulls.md) | Drops null values in dataframe. | plugin |
+| [`polars dummies`](/commands/docs/polars_dummies.md) | Creates a new dataframe with dummy variables. | plugin |
+| [`polars explode`](/commands/docs/polars_explode.md) | Explodes a dataframe or creates a explode expression. | plugin |
+| [`polars expr-not`](/commands/docs/polars_expr-not.md) | Creates a not expression. | plugin |
+| [`polars fetch`](/commands/docs/polars_fetch.md) | Collects the lazyframe to the selected rows. | plugin |
+| [`polars fill-nan`](/commands/docs/polars_fill-nan.md) | Replaces NaN values with the given expression. | plugin |
+| [`polars fill-null`](/commands/docs/polars_fill-null.md) | Replaces NULL values with the given expression. | plugin |
+| [`polars filter`](/commands/docs/polars_filter.md) | Filter dataframe based in expression. | plugin |
+| [`polars filter-with`](/commands/docs/polars_filter-with.md) | Filters dataframe using a mask or expression as reference. | plugin |
+| [`polars first`](/commands/docs/polars_first.md) | Show only the first number of rows or create a first expression | plugin |
+| [`polars flatten`](/commands/docs/polars_flatten.md) | An alias for polars explode. | plugin |
+| [`polars get`](/commands/docs/polars_get.md) | Creates dataframe with the selected columns. | plugin |
+| [`polars get-day`](/commands/docs/polars_get-day.md) | Gets day from date. | plugin |
+| [`polars get-hour`](/commands/docs/polars_get-hour.md) | Gets hour from date. | plugin |
+| [`polars get-minute`](/commands/docs/polars_get-minute.md) | Gets minute from date. | plugin |
+| [`polars get-month`](/commands/docs/polars_get-month.md) | Gets month from date. | plugin |
+| [`polars get-nanosecond`](/commands/docs/polars_get-nanosecond.md) | Gets nanosecond from date. | plugin |
+| [`polars get-ordinal`](/commands/docs/polars_get-ordinal.md) | Gets ordinal from date. | plugin |
+| [`polars get-second`](/commands/docs/polars_get-second.md) | Gets second from date. | plugin |
+| [`polars get-week`](/commands/docs/polars_get-week.md) | Gets week from date. | plugin |
+| [`polars get-weekday`](/commands/docs/polars_get-weekday.md) | Gets weekday from date. | plugin |
+| [`polars get-year`](/commands/docs/polars_get-year.md) | Gets year from date. | plugin |
+| [`polars group-by`](/commands/docs/polars_group-by.md) | Creates a group-by object that can be used for other aggregations. | plugin |
+| [`polars implode`](/commands/docs/polars_implode.md) | Aggregates values into a list. | plugin |
+| [`polars integer`](/commands/docs/polars_integer.md) | Converts a string column into a integer column | plugin |
+| [`polars into-df`](/commands/docs/polars_into-df.md) | Converts a list, table or record into a dataframe. | plugin |
+| [`polars into-lazy`](/commands/docs/polars_into-lazy.md) | Converts a dataframe into a lazy dataframe. | plugin |
+| [`polars into-nu`](/commands/docs/polars_into-nu.md) | Converts a dataframe or an expression into nushell value for access and exploration. | plugin |
+| [`polars is-duplicated`](/commands/docs/polars_is-duplicated.md) | Creates mask indicating duplicated values. | plugin |
+| [`polars is-in`](/commands/docs/polars_is-in.md) | Creates an is-in expression or checks to see if the elements are contained in the right series | plugin |
+| [`polars is-not-null`](/commands/docs/polars_is-not-null.md) | Creates mask where value is not null. | plugin |
+| [`polars is-null`](/commands/docs/polars_is-null.md) | Creates mask where value is null. | plugin |
+| [`polars is-unique`](/commands/docs/polars_is-unique.md) | Creates mask indicating unique values. | plugin |
+| [`polars join`](/commands/docs/polars_join.md) | Joins a lazy frame with other lazy frame. | plugin |
+| [`polars last`](/commands/docs/polars_last.md) | Creates new dataframe with tail rows or creates a last expression. | plugin |
+| [`polars lit`](/commands/docs/polars_lit.md) | Creates a literal expression. | plugin |
+| [`polars lowercase`](/commands/docs/polars_lowercase.md) | Lowercase the strings in the column. | plugin |
+| [`polars max`](/commands/docs/polars_max.md) | Creates a max expression or aggregates columns to their max value. | plugin |
+| [`polars mean`](/commands/docs/polars_mean.md) | Creates a mean expression for an aggregation or aggregates columns to their mean value. | plugin |
+| [`polars median`](/commands/docs/polars_median.md) | Median value from columns in a dataframe or creates expression for an aggregation | plugin |
+| [`polars min`](/commands/docs/polars_min.md) | Creates a min expression or aggregates columns to their min value. | plugin |
+| [`polars n-unique`](/commands/docs/polars_n-unique.md) | Counts unique values. | plugin |
+| [`polars not`](/commands/docs/polars_not.md) | Inverts boolean mask. | plugin |
+| [`polars open`](/commands/docs/polars_open.md) | Opens CSV, JSON, NDJSON/JSON lines, arrow, avro, or parquet file to create dataframe. A lazy dataframe will be created by default, if supported. | plugin |
+| [`polars otherwise`](/commands/docs/polars_otherwise.md) | Completes a when expression. | plugin |
+| [`polars pivot`](/commands/docs/polars_pivot.md) | Pivot a DataFrame from wide to long format. | plugin |
+| [`polars profile`](/commands/docs/polars_profile.md) | Profile a lazy dataframe. This will run the query and return a record containing the materialized DataFrame and a DataFrame that contains profiling information of each node that is executed.
+
+The units of the timings are microseconds. | plugin |
+| [`polars quantile`](/commands/docs/polars_quantile.md) | Aggregates the columns to the selected quantile. | plugin |
+| [`polars query`](/commands/docs/polars_query.md) | Query dataframe using SQL. Note: The dataframe is always named 'df' in your query's from clause. | plugin |
+| [`polars rename`](/commands/docs/polars_rename.md) | Rename a dataframe column. | plugin |
+| [`polars replace`](/commands/docs/polars_replace.md) | Replace the leftmost (sub)string by a regex pattern. | plugin |
+| [`polars replace-all`](/commands/docs/polars_replace-all.md) | Replace all (sub)strings by a regex pattern. | plugin |
+| [`polars reverse`](/commands/docs/polars_reverse.md) | Reverses the LazyFrame | plugin |
+| [`polars rolling`](/commands/docs/polars_rolling.md) | Rolling calculation for a series. | plugin |
+| [`polars sample`](/commands/docs/polars_sample.md) | Create sample dataframe. | plugin |
+| [`polars save`](/commands/docs/polars_save.md) | Saves a dataframe to disk. For lazy dataframes a sink operation will be used if the file type supports it (parquet, ipc/arrow, csv, and ndjson). | plugin |
+| [`polars schema`](/commands/docs/polars_schema.md) | Show schema for a dataframe. | plugin |
+| [`polars select`](/commands/docs/polars_select.md) | Selects columns from lazyframe. | plugin |
+| [`polars set`](/commands/docs/polars_set.md) | Sets value where given mask is true. | plugin |
+| [`polars set-with-idx`](/commands/docs/polars_set-with-idx.md) | Sets value in the given index. | plugin |
+| [`polars shape`](/commands/docs/polars_shape.md) | Shows column and row size for a dataframe. | plugin |
+| [`polars shift`](/commands/docs/polars_shift.md) | Shifts the values by a given period. | plugin |
+| [`polars slice`](/commands/docs/polars_slice.md) | Creates new dataframe from a slice of rows. | plugin |
+| [`polars sort-by`](/commands/docs/polars_sort-by.md) | Sorts a lazy dataframe based on expression(s). | plugin |
+| [`polars std`](/commands/docs/polars_std.md) | Creates a std expression for an aggregation of std value from columns in a dataframe. | plugin |
+| [`polars store-get`](/commands/docs/polars_store-get.md) | Gets a Dataframe or other object from the plugin cache. | plugin |
+| [`polars store-ls`](/commands/docs/polars_store-ls.md) | Lists stored polars objects. | plugin |
+| [`polars store-rm`](/commands/docs/polars_store-rm.md) | Removes a stored Dataframe or other object from the plugin cache. | plugin |
+| [`polars str-join`](/commands/docs/polars_str-join.md) | Concatenates strings within a column or dataframes | plugin |
+| [`polars str-lengths`](/commands/docs/polars_str-lengths.md) | Get lengths of all strings. | plugin |
+| [`polars str-slice`](/commands/docs/polars_str-slice.md) | Slices the string from the start position until the selected length. | plugin |
+| [`polars strftime`](/commands/docs/polars_strftime.md) | Formats date based on string rule. | plugin |
+| [`polars sum`](/commands/docs/polars_sum.md) | Creates a sum expression for an aggregation or aggregates columns to their sum value. | plugin |
+| [`polars summary`](/commands/docs/polars_summary.md) | For a dataframe, produces descriptive statistics (summary statistics) for its numeric columns. | plugin |
+| [`polars take`](/commands/docs/polars_take.md) | Creates new dataframe using the given indices. | plugin |
+| [`polars unique`](/commands/docs/polars_unique.md) | Returns unique values from a dataframe. | plugin |
+| [`polars unpivot`](/commands/docs/polars_unpivot.md) | Unpivot a DataFrame from wide to long format. | plugin |
+| [`polars uppercase`](/commands/docs/polars_uppercase.md) | Uppercase the strings in the column. | plugin |
+| [`polars value-counts`](/commands/docs/polars_value-counts.md) | Returns a dataframe with the counts for unique values in series. | plugin |
+| [`polars var`](/commands/docs/polars_var.md) | Create a var expression for an aggregation. | plugin |
+| [`polars when`](/commands/docs/polars_when.md) | Creates and modifies a when expression. | plugin |
+| [`polars with-column`](/commands/docs/polars_with-column.md) | Adds a series to the dataframe. | plugin |
\ No newline at end of file
diff --git a/commands/docs/polars_agg-groups.md b/commands/docs/polars_agg-groups.md
index 4bdf06357b5..6122971fb61 100644
--- a/commands/docs/polars_agg-groups.md
+++ b/commands/docs/polars_agg-groups.md
@@ -2,7 +2,7 @@
title: polars agg-groups
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates an agg_groups expression.
usage: |
diff --git a/commands/docs/polars_agg.md b/commands/docs/polars_agg.md
index 86760f14ae5..e2454b67df5 100644
--- a/commands/docs/polars_agg.md
+++ b/commands/docs/polars_agg.md
@@ -2,7 +2,7 @@
title: polars agg
categories: |
lazyframe
-version: 0.98.0
+version: 0.99.0
lazyframe: |
Performs a series of aggregations from a group-by.
usage: |
diff --git a/commands/docs/polars_all-false.md b/commands/docs/polars_all-false.md
index 0e37924e2a8..86c71f0efb6 100644
--- a/commands/docs/polars_all-false.md
+++ b/commands/docs/polars_all-false.md
@@ -2,7 +2,7 @@
title: polars all-false
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Returns true if all values are false.
usage: |
diff --git a/commands/docs/polars_all-true.md b/commands/docs/polars_all-true.md
index ef12bc34467..45337dbf7d8 100644
--- a/commands/docs/polars_all-true.md
+++ b/commands/docs/polars_all-true.md
@@ -2,7 +2,7 @@
title: polars all-true
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Returns true if all values are true.
usage: |
diff --git a/commands/docs/polars_append.md b/commands/docs/polars_append.md
index de1df1d15a4..e3425746f12 100644
--- a/commands/docs/polars_append.md
+++ b/commands/docs/polars_append.md
@@ -2,7 +2,7 @@
title: polars append
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Appends a new dataframe.
usage: |
diff --git a/commands/docs/polars_arg-max.md b/commands/docs/polars_arg-max.md
index 684dbb0d346..165b061f34b 100644
--- a/commands/docs/polars_arg-max.md
+++ b/commands/docs/polars_arg-max.md
@@ -2,7 +2,7 @@
title: polars arg-max
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Return index for max value in series.
usage: |
diff --git a/commands/docs/polars_arg-min.md b/commands/docs/polars_arg-min.md
index b8a3fb93f1f..b31cef278b6 100644
--- a/commands/docs/polars_arg-min.md
+++ b/commands/docs/polars_arg-min.md
@@ -2,7 +2,7 @@
title: polars arg-min
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Return index for min value in series.
usage: |
diff --git a/commands/docs/polars_arg-sort.md b/commands/docs/polars_arg-sort.md
index c5d136f8458..b0cd7938ece 100644
--- a/commands/docs/polars_arg-sort.md
+++ b/commands/docs/polars_arg-sort.md
@@ -2,7 +2,7 @@
title: polars arg-sort
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Returns indexes for a sorted series.
usage: |
diff --git a/commands/docs/polars_arg-true.md b/commands/docs/polars_arg-true.md
index 54864574b1d..dd98bada811 100644
--- a/commands/docs/polars_arg-true.md
+++ b/commands/docs/polars_arg-true.md
@@ -2,7 +2,7 @@
title: polars arg-true
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Returns indexes where values are true.
usage: |
diff --git a/commands/docs/polars_arg-unique.md b/commands/docs/polars_arg-unique.md
index 6e0d08ecca0..2964d6b0f07 100644
--- a/commands/docs/polars_arg-unique.md
+++ b/commands/docs/polars_arg-unique.md
@@ -2,7 +2,7 @@
title: polars arg-unique
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Returns indexes for unique values.
usage: |
diff --git a/commands/docs/polars_arg-where.md b/commands/docs/polars_arg-where.md
index dbb4c7d25f9..dc3e3a37df4 100644
--- a/commands/docs/polars_arg-where.md
+++ b/commands/docs/polars_arg-where.md
@@ -2,7 +2,7 @@
title: polars arg-where
categories: |
expression
-version: 0.98.0
+version: 0.99.0
expression: |
Creates an expression that returns the arguments where expression is true.
usage: |
diff --git a/commands/docs/polars_as-date.md b/commands/docs/polars_as-date.md
index 59e81f16a76..3adb8bcd650 100644
--- a/commands/docs/polars_as-date.md
+++ b/commands/docs/polars_as-date.md
@@ -2,7 +2,7 @@
title: polars as-date
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Converts string to date.
usage: |
diff --git a/commands/docs/polars_as-datetime.md b/commands/docs/polars_as-datetime.md
index 0474d8fe8c4..4a4aeb3abaf 100644
--- a/commands/docs/polars_as-datetime.md
+++ b/commands/docs/polars_as-datetime.md
@@ -2,7 +2,7 @@
title: polars as-datetime
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Converts string to datetime.
usage: |
diff --git a/commands/docs/polars_as.md b/commands/docs/polars_as.md
index 1166bab8d22..b2465e5c118 100644
--- a/commands/docs/polars_as.md
+++ b/commands/docs/polars_as.md
@@ -2,7 +2,7 @@
title: polars as
categories: |
expression
-version: 0.98.0
+version: 0.99.0
expression: |
Creates an alias expression.
usage: |
diff --git a/commands/docs/polars_cache.md b/commands/docs/polars_cache.md
index 3f2d3614477..c48efc4a17c 100644
--- a/commands/docs/polars_cache.md
+++ b/commands/docs/polars_cache.md
@@ -2,7 +2,7 @@
title: polars cache
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Caches operations in a new LazyFrame.
usage: |
diff --git a/commands/docs/polars_cast.md b/commands/docs/polars_cast.md
index 26cf54a8721..34c15212ef6 100644
--- a/commands/docs/polars_cast.md
+++ b/commands/docs/polars_cast.md
@@ -2,7 +2,7 @@
title: polars cast
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Cast a column to a different dtype.
usage: |
diff --git a/commands/docs/polars_col.md b/commands/docs/polars_col.md
index 38557b8289b..4cb5cb20815 100644
--- a/commands/docs/polars_col.md
+++ b/commands/docs/polars_col.md
@@ -2,7 +2,7 @@
title: polars col
categories: |
expression
-version: 0.98.0
+version: 0.99.0
expression: |
Creates a named column expression.
usage: |
diff --git a/commands/docs/polars_collect.md b/commands/docs/polars_collect.md
index 7ebccea3526..c32d874612f 100644
--- a/commands/docs/polars_collect.md
+++ b/commands/docs/polars_collect.md
@@ -2,7 +2,7 @@
title: polars collect
categories: |
lazyframe
-version: 0.98.0
+version: 0.99.0
lazyframe: |
Collect lazy dataframe into eager dataframe.
usage: |
diff --git a/commands/docs/polars_columns.md b/commands/docs/polars_columns.md
index e21c9b16d24..fcfb5b2ae6f 100644
--- a/commands/docs/polars_columns.md
+++ b/commands/docs/polars_columns.md
@@ -2,7 +2,7 @@
title: polars columns
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Show dataframe columns.
usage: |
diff --git a/commands/docs/polars_concat-str.md b/commands/docs/polars_concat-str.md
index e5a680beb8a..1d99a7e550b 100644
--- a/commands/docs/polars_concat-str.md
+++ b/commands/docs/polars_concat-str.md
@@ -2,7 +2,7 @@
title: polars concat-str
categories: |
expression
-version: 0.98.0
+version: 0.99.0
expression: |
Creates a concat string expression.
usage: |
diff --git a/commands/docs/polars_concat.md b/commands/docs/polars_concat.md
new file mode 100644
index 00000000000..4a83fefd0c2
--- /dev/null
+++ b/commands/docs/polars_concat.md
@@ -0,0 +1,77 @@
+---
+title: polars concat
+categories: |
+ dataframe
+version: 0.99.0
+dataframe: |
+ Concatenate two or more dataframes.
+usage: |
+ Concatenate two or more dataframes.
+---
+
+
+# `polars concat` for [dataframe](/commands/categories/dataframe.md)
+
+Concatenate two or more dataframes.
+
+::: warning This command requires a plugin
+The `polars concat` command resides in the `polars` plugin.
+To use this command, you must install and register `nu_plugin_polars`.
+See the [Plugins](/book/plugins.html) chapter in the book for more information.
+:::
+
+## Signature
+
+```> polars concat {flags} ...rest```
+
+## Flags
+
+ - `--no-parallel, -`: Disable parallel execution
+ - `--rechunk, -`: Rechunk the resulting dataframe
+ - `--to-supertypes, -`: Cast to supertypes
+ - `--diagonal, -`: Concatenate dataframes diagonally
+ - `--from-partitioned-ds, -`: Concatenate dataframes from a partitioned dataset
+
+## Parameters
+
+ - `...rest`: The dataframes to concatenate
+
+
+## Input/output types:
+
+| input | output |
+| ----- | ------ |
+| any | any |
+
+## Examples
+
+Concatenates two dataframes with the dataframe in the pipeline.
+```nu
+> [[a b]; [1 2]] | polars into-df
+ | polars concat ([[a b]; [3 4]] | polars into-df) ([[a b]; [5 6]] | polars into-df)
+ | polars collect
+ | polars sort-by [a b]
+╭───┬───┬───╮
+│ # │ a │ b │
+├───┼───┼───┤
+│ 0 │ 1 │ 2 │
+│ 1 │ 3 │ 4 │
+│ 2 │ 5 │ 6 │
+╰───┴───┴───╯
+
+```
+
+Concatenates three dataframes together
+```nu
+> polars concat ([[a b]; [1 2]] | polars into-df) ([[a b]; [3 4]] | polars into-df) ([[a b]; [5 6]] | polars into-df)
+ | polars collect
+ | polars sort-by [a b]
+╭───┬───┬───╮
+│ # │ a │ b │
+├───┼───┼───┤
+│ 0 │ 1 │ 2 │
+│ 1 │ 3 │ 4 │
+│ 2 │ 5 │ 6 │
+╰───┴───┴───╯
+
+```
diff --git a/commands/docs/polars_contains.md b/commands/docs/polars_contains.md
index db617a93821..96f4e9f1b57 100644
--- a/commands/docs/polars_contains.md
+++ b/commands/docs/polars_contains.md
@@ -2,7 +2,7 @@
title: polars contains
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Checks if a pattern is contained in a string.
usage: |
diff --git a/commands/docs/polars_count-null.md b/commands/docs/polars_count-null.md
index ac445803657..93d520a17d9 100644
--- a/commands/docs/polars_count-null.md
+++ b/commands/docs/polars_count-null.md
@@ -2,7 +2,7 @@
title: polars count-null
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Counts null values.
usage: |
diff --git a/commands/docs/polars_count.md b/commands/docs/polars_count.md
index 905ef5d18a7..6d109dbf74d 100644
--- a/commands/docs/polars_count.md
+++ b/commands/docs/polars_count.md
@@ -2,7 +2,7 @@
title: polars count
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Returns the number of non-null values in the column.
usage: |
diff --git a/commands/docs/polars_cumulative.md b/commands/docs/polars_cumulative.md
index 88d0154456d..1c0d2a7cbf0 100644
--- a/commands/docs/polars_cumulative.md
+++ b/commands/docs/polars_cumulative.md
@@ -2,7 +2,7 @@
title: polars cumulative
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Cumulative calculation for a column or series.
usage: |
diff --git a/commands/docs/polars_datepart.md b/commands/docs/polars_datepart.md
index fab6401554f..fa6b4bd42ef 100644
--- a/commands/docs/polars_datepart.md
+++ b/commands/docs/polars_datepart.md
@@ -2,7 +2,7 @@
title: polars datepart
categories: |
expression
-version: 0.98.0
+version: 0.99.0
expression: |
Creates an expression for capturing the specified datepart in a column.
usage: |
diff --git a/commands/docs/polars_decimal.md b/commands/docs/polars_decimal.md
index 8b66dc128c5..624f0ebcf2f 100644
--- a/commands/docs/polars_decimal.md
+++ b/commands/docs/polars_decimal.md
@@ -2,7 +2,7 @@
title: polars decimal
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Converts a string column into a decimal column
usage: |
diff --git a/commands/docs/polars_drop-duplicates.md b/commands/docs/polars_drop-duplicates.md
index 151efc78a4e..78825cf32cb 100644
--- a/commands/docs/polars_drop-duplicates.md
+++ b/commands/docs/polars_drop-duplicates.md
@@ -2,7 +2,7 @@
title: polars drop-duplicates
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Drops duplicate values in dataframe.
usage: |
diff --git a/commands/docs/polars_drop-nulls.md b/commands/docs/polars_drop-nulls.md
index 1169d6f22af..4e7c03e54e4 100644
--- a/commands/docs/polars_drop-nulls.md
+++ b/commands/docs/polars_drop-nulls.md
@@ -2,7 +2,7 @@
title: polars drop-nulls
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Drops null values in dataframe.
usage: |
diff --git a/commands/docs/polars_drop.md b/commands/docs/polars_drop.md
index 36677600c5a..e5de0841603 100644
--- a/commands/docs/polars_drop.md
+++ b/commands/docs/polars_drop.md
@@ -2,7 +2,7 @@
title: polars drop
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates a new dataframe by dropping the selected columns.
usage: |
diff --git a/commands/docs/polars_dummies.md b/commands/docs/polars_dummies.md
index d634bbdf0fe..0013d09a455 100644
--- a/commands/docs/polars_dummies.md
+++ b/commands/docs/polars_dummies.md
@@ -2,7 +2,7 @@
title: polars dummies
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates a new dataframe with dummy variables.
usage: |
diff --git a/commands/docs/polars_explode.md b/commands/docs/polars_explode.md
index b1d193ac804..572a6082c3c 100644
--- a/commands/docs/polars_explode.md
+++ b/commands/docs/polars_explode.md
@@ -2,7 +2,7 @@
title: polars explode
categories: |
lazyframe
-version: 0.98.0
+version: 0.99.0
lazyframe: |
Explodes a dataframe or creates a explode expression.
usage: |
diff --git a/commands/docs/polars_expr-not.md b/commands/docs/polars_expr-not.md
index 58e033d4562..46c32e9c70a 100644
--- a/commands/docs/polars_expr-not.md
+++ b/commands/docs/polars_expr-not.md
@@ -2,7 +2,7 @@
title: polars expr-not
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates a not expression.
usage: |
diff --git a/commands/docs/polars_fetch.md b/commands/docs/polars_fetch.md
index 28b0af5bd40..4618b631a64 100644
--- a/commands/docs/polars_fetch.md
+++ b/commands/docs/polars_fetch.md
@@ -2,7 +2,7 @@
title: polars fetch
categories: |
lazyframe
-version: 0.98.0
+version: 0.99.0
lazyframe: |
Collects the lazyframe to the selected rows.
usage: |
diff --git a/commands/docs/polars_fill-nan.md b/commands/docs/polars_fill-nan.md
index 97174263c26..df564035015 100644
--- a/commands/docs/polars_fill-nan.md
+++ b/commands/docs/polars_fill-nan.md
@@ -2,7 +2,7 @@
title: polars fill-nan
categories: |
lazyframe
-version: 0.98.0
+version: 0.99.0
lazyframe: |
Replaces NaN values with the given expression.
usage: |
diff --git a/commands/docs/polars_fill-null.md b/commands/docs/polars_fill-null.md
index d417470c534..3a253465405 100644
--- a/commands/docs/polars_fill-null.md
+++ b/commands/docs/polars_fill-null.md
@@ -2,7 +2,7 @@
title: polars fill-null
categories: |
lazyframe
-version: 0.98.0
+version: 0.99.0
lazyframe: |
Replaces NULL values with the given expression.
usage: |
diff --git a/commands/docs/polars_filter-with.md b/commands/docs/polars_filter-with.md
index 7b0cafcaf20..203172d554c 100644
--- a/commands/docs/polars_filter-with.md
+++ b/commands/docs/polars_filter-with.md
@@ -2,7 +2,7 @@
title: polars filter-with
categories: |
dataframe or lazyframe
-version: 0.98.0
+version: 0.99.0
dataframe_or_lazyframe: |
Filters dataframe using a mask or expression as reference.
usage: |
diff --git a/commands/docs/polars_filter.md b/commands/docs/polars_filter.md
index 9b269e0a78f..3447455453d 100644
--- a/commands/docs/polars_filter.md
+++ b/commands/docs/polars_filter.md
@@ -2,7 +2,7 @@
title: polars filter
categories: |
lazyframe
-version: 0.98.0
+version: 0.99.0
lazyframe: |
Filter dataframe based in expression.
usage: |
diff --git a/commands/docs/polars_first.md b/commands/docs/polars_first.md
index 6437be71441..cda23bb972c 100644
--- a/commands/docs/polars_first.md
+++ b/commands/docs/polars_first.md
@@ -2,7 +2,7 @@
title: polars first
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Show only the first number of rows or create a first expression
usage: |
diff --git a/commands/docs/polars_flatten.md b/commands/docs/polars_flatten.md
index 5f8a12290e5..5ba119f3c87 100644
--- a/commands/docs/polars_flatten.md
+++ b/commands/docs/polars_flatten.md
@@ -2,7 +2,7 @@
title: polars flatten
categories: |
lazyframe
-version: 0.98.0
+version: 0.99.0
lazyframe: |
An alias for polars explode.
usage: |
diff --git a/commands/docs/polars_get-day.md b/commands/docs/polars_get-day.md
index 01379520672..968da80b07c 100644
--- a/commands/docs/polars_get-day.md
+++ b/commands/docs/polars_get-day.md
@@ -2,7 +2,7 @@
title: polars get-day
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Gets day from date.
usage: |
diff --git a/commands/docs/polars_get-hour.md b/commands/docs/polars_get-hour.md
index 9285e8ccb9a..0cb1fca2669 100644
--- a/commands/docs/polars_get-hour.md
+++ b/commands/docs/polars_get-hour.md
@@ -2,7 +2,7 @@
title: polars get-hour
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Gets hour from date.
usage: |
diff --git a/commands/docs/polars_get-minute.md b/commands/docs/polars_get-minute.md
index 6566f52c685..74f6a45b077 100644
--- a/commands/docs/polars_get-minute.md
+++ b/commands/docs/polars_get-minute.md
@@ -2,7 +2,7 @@
title: polars get-minute
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Gets minute from date.
usage: |
diff --git a/commands/docs/polars_get-month.md b/commands/docs/polars_get-month.md
index 8b3db26a804..5cd8edb711a 100644
--- a/commands/docs/polars_get-month.md
+++ b/commands/docs/polars_get-month.md
@@ -2,7 +2,7 @@
title: polars get-month
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Gets month from date.
usage: |
diff --git a/commands/docs/polars_get-nanosecond.md b/commands/docs/polars_get-nanosecond.md
index a803f4396a6..ebab545688c 100644
--- a/commands/docs/polars_get-nanosecond.md
+++ b/commands/docs/polars_get-nanosecond.md
@@ -2,7 +2,7 @@
title: polars get-nanosecond
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Gets nanosecond from date.
usage: |
diff --git a/commands/docs/polars_get-ordinal.md b/commands/docs/polars_get-ordinal.md
index 62c968bf794..c9e21ac6ac5 100644
--- a/commands/docs/polars_get-ordinal.md
+++ b/commands/docs/polars_get-ordinal.md
@@ -2,7 +2,7 @@
title: polars get-ordinal
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Gets ordinal from date.
usage: |
diff --git a/commands/docs/polars_get-second.md b/commands/docs/polars_get-second.md
index 5881a340453..b97dcb109a8 100644
--- a/commands/docs/polars_get-second.md
+++ b/commands/docs/polars_get-second.md
@@ -2,7 +2,7 @@
title: polars get-second
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Gets second from date.
usage: |
diff --git a/commands/docs/polars_get-week.md b/commands/docs/polars_get-week.md
index 3e4ef1f07b3..8d12ae072c0 100644
--- a/commands/docs/polars_get-week.md
+++ b/commands/docs/polars_get-week.md
@@ -2,7 +2,7 @@
title: polars get-week
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Gets week from date.
usage: |
diff --git a/commands/docs/polars_get-weekday.md b/commands/docs/polars_get-weekday.md
index 6305ed0a57b..20413f76932 100644
--- a/commands/docs/polars_get-weekday.md
+++ b/commands/docs/polars_get-weekday.md
@@ -2,7 +2,7 @@
title: polars get-weekday
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Gets weekday from date.
usage: |
diff --git a/commands/docs/polars_get-year.md b/commands/docs/polars_get-year.md
index ce4acff047f..1b183ab4029 100644
--- a/commands/docs/polars_get-year.md
+++ b/commands/docs/polars_get-year.md
@@ -2,7 +2,7 @@
title: polars get-year
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Gets year from date.
usage: |
diff --git a/commands/docs/polars_get.md b/commands/docs/polars_get.md
index 2b1e21e921c..421956019ce 100644
--- a/commands/docs/polars_get.md
+++ b/commands/docs/polars_get.md
@@ -2,7 +2,7 @@
title: polars get
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates dataframe with the selected columns.
usage: |
diff --git a/commands/docs/polars_group-by.md b/commands/docs/polars_group-by.md
index 995ab5c7da3..3561264b1a7 100644
--- a/commands/docs/polars_group-by.md
+++ b/commands/docs/polars_group-by.md
@@ -2,7 +2,7 @@
title: polars group-by
categories: |
lazyframe
-version: 0.98.0
+version: 0.99.0
lazyframe: |
Creates a group-by object that can be used for other aggregations.
usage: |
diff --git a/commands/docs/polars_implode.md b/commands/docs/polars_implode.md
index e0a36ea592e..3073766be96 100644
--- a/commands/docs/polars_implode.md
+++ b/commands/docs/polars_implode.md
@@ -2,7 +2,7 @@
title: polars implode
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Aggregates values into a list.
usage: |
diff --git a/commands/docs/polars_integer.md b/commands/docs/polars_integer.md
index 85dfa634ca5..d08c6fda6be 100644
--- a/commands/docs/polars_integer.md
+++ b/commands/docs/polars_integer.md
@@ -2,7 +2,7 @@
title: polars integer
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Converts a string column into a integer column
usage: |
diff --git a/commands/docs/polars_into-df.md b/commands/docs/polars_into-df.md
index 4388ed6e008..94796188fa3 100644
--- a/commands/docs/polars_into-df.md
+++ b/commands/docs/polars_into-df.md
@@ -2,7 +2,7 @@
title: polars into-df
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Converts a list, table or record into a dataframe.
usage: |
diff --git a/commands/docs/polars_into-lazy.md b/commands/docs/polars_into-lazy.md
index 6f6b7efc516..4a4e86eba59 100644
--- a/commands/docs/polars_into-lazy.md
+++ b/commands/docs/polars_into-lazy.md
@@ -2,7 +2,7 @@
title: polars into-lazy
categories: |
lazyframe
-version: 0.98.0
+version: 0.99.0
lazyframe: |
Converts a dataframe into a lazy dataframe.
usage: |
diff --git a/commands/docs/polars_into-nu.md b/commands/docs/polars_into-nu.md
index 30f751a62d0..e847214d46f 100644
--- a/commands/docs/polars_into-nu.md
+++ b/commands/docs/polars_into-nu.md
@@ -2,7 +2,7 @@
title: polars into-nu
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Converts a dataframe or an expression into nushell value for access and exploration.
usage: |
diff --git a/commands/docs/polars_is-duplicated.md b/commands/docs/polars_is-duplicated.md
index 33fbb33973c..7905e6be324 100644
--- a/commands/docs/polars_is-duplicated.md
+++ b/commands/docs/polars_is-duplicated.md
@@ -2,7 +2,7 @@
title: polars is-duplicated
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates mask indicating duplicated values.
usage: |
diff --git a/commands/docs/polars_is-in.md b/commands/docs/polars_is-in.md
index b8f93713084..57aadc0101f 100644
--- a/commands/docs/polars_is-in.md
+++ b/commands/docs/polars_is-in.md
@@ -2,7 +2,7 @@
title: polars is-in
categories: |
expression
-version: 0.98.0
+version: 0.99.0
expression: |
Creates an is-in expression or checks to see if the elements are contained in the right series
usage: |
diff --git a/commands/docs/polars_is-not-null.md b/commands/docs/polars_is-not-null.md
index 7aadcf2c4af..930739061de 100644
--- a/commands/docs/polars_is-not-null.md
+++ b/commands/docs/polars_is-not-null.md
@@ -2,7 +2,7 @@
title: polars is-not-null
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates mask where value is not null.
usage: |
diff --git a/commands/docs/polars_is-null.md b/commands/docs/polars_is-null.md
index daefb530305..f5ae9d233fd 100644
--- a/commands/docs/polars_is-null.md
+++ b/commands/docs/polars_is-null.md
@@ -2,7 +2,7 @@
title: polars is-null
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates mask where value is null.
usage: |
diff --git a/commands/docs/polars_is-unique.md b/commands/docs/polars_is-unique.md
index 60ab1839c0f..994eccb0956 100644
--- a/commands/docs/polars_is-unique.md
+++ b/commands/docs/polars_is-unique.md
@@ -2,7 +2,7 @@
title: polars is-unique
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates mask indicating unique values.
usage: |
diff --git a/commands/docs/polars_join.md b/commands/docs/polars_join.md
index cd0d8f28670..b8999b309f9 100644
--- a/commands/docs/polars_join.md
+++ b/commands/docs/polars_join.md
@@ -2,7 +2,7 @@
title: polars join
categories: |
lazyframe
-version: 0.98.0
+version: 0.99.0
lazyframe: |
Joins a lazy frame with other lazy frame.
usage: |
diff --git a/commands/docs/polars_last.md b/commands/docs/polars_last.md
index 52beb6558e2..074c01614c9 100644
--- a/commands/docs/polars_last.md
+++ b/commands/docs/polars_last.md
@@ -2,7 +2,7 @@
title: polars last
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates new dataframe with tail rows or creates a last expression.
usage: |
diff --git a/commands/docs/polars_lit.md b/commands/docs/polars_lit.md
index 058cac46607..1bbecbd778a 100644
--- a/commands/docs/polars_lit.md
+++ b/commands/docs/polars_lit.md
@@ -2,7 +2,7 @@
title: polars lit
categories: |
expression
-version: 0.98.0
+version: 0.99.0
expression: |
Creates a literal expression.
usage: |
diff --git a/commands/docs/polars_lowercase.md b/commands/docs/polars_lowercase.md
index 519677ee8a4..fbef3425c91 100644
--- a/commands/docs/polars_lowercase.md
+++ b/commands/docs/polars_lowercase.md
@@ -2,7 +2,7 @@
title: polars lowercase
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Lowercase the strings in the column.
usage: |
diff --git a/commands/docs/polars_max.md b/commands/docs/polars_max.md
index 2090bdf9a04..a249a210df2 100644
--- a/commands/docs/polars_max.md
+++ b/commands/docs/polars_max.md
@@ -2,7 +2,7 @@
title: polars max
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates a max expression or aggregates columns to their max value.
usage: |
diff --git a/commands/docs/polars_mean.md b/commands/docs/polars_mean.md
index f177ea0310b..58624a603df 100644
--- a/commands/docs/polars_mean.md
+++ b/commands/docs/polars_mean.md
@@ -2,7 +2,7 @@
title: polars mean
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates a mean expression for an aggregation or aggregates columns to their mean value.
usage: |
diff --git a/commands/docs/polars_median.md b/commands/docs/polars_median.md
index 99f41c862da..b745fcf44fe 100644
--- a/commands/docs/polars_median.md
+++ b/commands/docs/polars_median.md
@@ -2,7 +2,7 @@
title: polars median
categories: |
lazyframe
-version: 0.98.0
+version: 0.99.0
lazyframe: |
Median value from columns in a dataframe or creates expression for an aggregation
usage: |
diff --git a/commands/docs/polars_min.md b/commands/docs/polars_min.md
index 583eac98baa..22df2bcbe82 100644
--- a/commands/docs/polars_min.md
+++ b/commands/docs/polars_min.md
@@ -2,7 +2,7 @@
title: polars min
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates a min expression or aggregates columns to their min value.
usage: |
diff --git a/commands/docs/polars_n-unique.md b/commands/docs/polars_n-unique.md
index 59d3a91971e..77cc2b42af9 100644
--- a/commands/docs/polars_n-unique.md
+++ b/commands/docs/polars_n-unique.md
@@ -2,7 +2,7 @@
title: polars n-unique
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Counts unique values.
usage: |
diff --git a/commands/docs/polars_not.md b/commands/docs/polars_not.md
index 2a95cf79f5d..2a558db0b1e 100644
--- a/commands/docs/polars_not.md
+++ b/commands/docs/polars_not.md
@@ -2,7 +2,7 @@
title: polars not
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Inverts boolean mask.
usage: |
diff --git a/commands/docs/polars_open.md b/commands/docs/polars_open.md
index b193b5ec96c..2f68efb37df 100644
--- a/commands/docs/polars_open.md
+++ b/commands/docs/polars_open.md
@@ -2,7 +2,7 @@
title: polars open
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Opens CSV, JSON, NDJSON/JSON lines, arrow, avro, or parquet file to create dataframe. A lazy dataframe will be created by default, if supported.
usage: |
diff --git a/commands/docs/polars_otherwise.md b/commands/docs/polars_otherwise.md
index 28c7f694a3b..44afeb912ae 100644
--- a/commands/docs/polars_otherwise.md
+++ b/commands/docs/polars_otherwise.md
@@ -2,7 +2,7 @@
title: polars otherwise
categories: |
expression
-version: 0.98.0
+version: 0.99.0
expression: |
Completes a when expression.
usage: |
diff --git a/commands/docs/polars_pivot.md b/commands/docs/polars_pivot.md
index 39e9d9317d0..a386f71fac3 100644
--- a/commands/docs/polars_pivot.md
+++ b/commands/docs/polars_pivot.md
@@ -2,7 +2,7 @@
title: polars pivot
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Pivot a DataFrame from wide to long format.
usage: |
diff --git a/commands/docs/polars_profile.md b/commands/docs/polars_profile.md
new file mode 100644
index 00000000000..554eb4c0e9e
--- /dev/null
+++ b/commands/docs/polars_profile.md
@@ -0,0 +1,53 @@
+---
+title: polars profile
+categories: |
+ dataframe
+version: 0.99.0
+dataframe: |
+ Profile a lazy dataframe. This will run the query and return a record containing the materialized DataFrame and a DataFrame that contains profiling information of each node that is executed.
+
+ The units of the timings are microseconds.
+usage: |
+ Profile a lazy dataframe. This will run the query and return a record containing the materialized DataFrame and a DataFrame that contains profiling information of each node that is executed.
+
+ The units of the timings are microseconds.
+---
+
+
+# `polars profile` for [dataframe](/commands/categories/dataframe.md)
+
+Profile a lazy dataframe. This will run the query and return a record containing the materialized DataFrame and a DataFrame that contains profiling information of each node that is executed.
The units of the timings are microseconds.
+
+::: warning This command requires a plugin
+The `polars profile` command resides in the `polars` plugin.
+To use this command, you must install and register `nu_plugin_polars`.
+See the [Plugins](/book/plugins.html) chapter in the book for more information.
+:::
+
+## Signature
+
+```> polars profile {flags} ```
+
+
+## Input/output types:
+
+| input | output |
+| ----- | ------ |
+| any | any |
+
+## Examples
+
+Profile a lazy dataframe
+```nu
+> [[a b]; [1 2] [1 4] [2 6] [2 4]]
+ | polars into-lazy
+ | polars group-by a
+ | polars agg [
+ (polars col b | polars min | polars as "b_min")
+ (polars col b | polars max | polars as "b_max")
+ (polars col b | polars sum | polars as "b_sum")
+ ]
+ | polars profile
+
+
+```
diff --git a/commands/docs/polars_quantile.md b/commands/docs/polars_quantile.md
index 08a409dc1e9..9223c8c8f8c 100644
--- a/commands/docs/polars_quantile.md
+++ b/commands/docs/polars_quantile.md
@@ -2,7 +2,7 @@
title: polars quantile
categories: |
lazyframe
-version: 0.98.0
+version: 0.99.0
lazyframe: |
Aggregates the columns to the selected quantile.
usage: |
diff --git a/commands/docs/polars_query.md b/commands/docs/polars_query.md
index 72730af3a48..a07eda5efa5 100644
--- a/commands/docs/polars_query.md
+++ b/commands/docs/polars_query.md
@@ -2,7 +2,7 @@
title: polars query
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Query dataframe using SQL. Note: The dataframe is always named 'df' in your query's from clause.
usage: |
diff --git a/commands/docs/polars_rename.md b/commands/docs/polars_rename.md
index 1d295753fbf..953c691db36 100644
--- a/commands/docs/polars_rename.md
+++ b/commands/docs/polars_rename.md
@@ -2,7 +2,7 @@
title: polars rename
categories: |
dataframe or lazyframe
-version: 0.98.0
+version: 0.99.0
dataframe_or_lazyframe: |
Rename a dataframe column.
usage: |
diff --git a/commands/docs/polars_replace-all.md b/commands/docs/polars_replace-all.md
index 3204930c044..e7faa6960c3 100644
--- a/commands/docs/polars_replace-all.md
+++ b/commands/docs/polars_replace-all.md
@@ -2,7 +2,7 @@
title: polars replace-all
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Replace all (sub)strings by a regex pattern.
usage: |
diff --git a/commands/docs/polars_replace.md b/commands/docs/polars_replace.md
index e8958e1da36..8fca1870a16 100644
--- a/commands/docs/polars_replace.md
+++ b/commands/docs/polars_replace.md
@@ -2,7 +2,7 @@
title: polars replace
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Replace the leftmost (sub)string by a regex pattern.
usage: |
diff --git a/commands/docs/polars_reverse.md b/commands/docs/polars_reverse.md
index 32e715ab68b..ca9e8bd379a 100644
--- a/commands/docs/polars_reverse.md
+++ b/commands/docs/polars_reverse.md
@@ -2,7 +2,7 @@
title: polars reverse
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Reverses the LazyFrame
usage: |
diff --git a/commands/docs/polars_rolling.md b/commands/docs/polars_rolling.md
index b679f988cfa..4aa5c6faa15 100644
--- a/commands/docs/polars_rolling.md
+++ b/commands/docs/polars_rolling.md
@@ -2,7 +2,7 @@
title: polars rolling
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Rolling calculation for a series.
usage: |
diff --git a/commands/docs/polars_sample.md b/commands/docs/polars_sample.md
index 33ccb7881cb..a186ddbcf7f 100644
--- a/commands/docs/polars_sample.md
+++ b/commands/docs/polars_sample.md
@@ -2,7 +2,7 @@
title: polars sample
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Create sample dataframe.
usage: |
diff --git a/commands/docs/polars_save.md b/commands/docs/polars_save.md
index 6b8af41c5c8..bebe8c1c62b 100644
--- a/commands/docs/polars_save.md
+++ b/commands/docs/polars_save.md
@@ -2,7 +2,7 @@
title: polars save
categories: |
lazyframe
-version: 0.98.0
+version: 0.99.0
lazyframe: |
Saves a dataframe to disk. For lazy dataframes a sink operation will be used if the file type supports it (parquet, ipc/arrow, csv, and ndjson).
usage: |
diff --git a/commands/docs/polars_schema.md b/commands/docs/polars_schema.md
index ea44e044e43..38e23ea8fd7 100644
--- a/commands/docs/polars_schema.md
+++ b/commands/docs/polars_schema.md
@@ -2,7 +2,7 @@
title: polars schema
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Show schema for a dataframe.
usage: |
diff --git a/commands/docs/polars_select.md b/commands/docs/polars_select.md
index 1d88b02f4a6..2c6fd863577 100644
--- a/commands/docs/polars_select.md
+++ b/commands/docs/polars_select.md
@@ -2,7 +2,7 @@
title: polars select
categories: |
lazyframe
-version: 0.98.0
+version: 0.99.0
lazyframe: |
Selects columns from lazyframe.
usage: |
diff --git a/commands/docs/polars_set-with-idx.md b/commands/docs/polars_set-with-idx.md
index 6bf49bbb684..0f3d5090e69 100644
--- a/commands/docs/polars_set-with-idx.md
+++ b/commands/docs/polars_set-with-idx.md
@@ -2,7 +2,7 @@
title: polars set-with-idx
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Sets value in the given index.
usage: |
diff --git a/commands/docs/polars_set.md b/commands/docs/polars_set.md
index 9adfb4ad041..75d2e884f68 100644
--- a/commands/docs/polars_set.md
+++ b/commands/docs/polars_set.md
@@ -2,7 +2,7 @@
title: polars set
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Sets value where given mask is true.
usage: |
diff --git a/commands/docs/polars_shape.md b/commands/docs/polars_shape.md
index 1271da36d2c..85c35120791 100644
--- a/commands/docs/polars_shape.md
+++ b/commands/docs/polars_shape.md
@@ -2,7 +2,7 @@
title: polars shape
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Shows column and row size for a dataframe.
usage: |
diff --git a/commands/docs/polars_shift.md b/commands/docs/polars_shift.md
index a239c73077b..5f11f839ce1 100644
--- a/commands/docs/polars_shift.md
+++ b/commands/docs/polars_shift.md
@@ -2,7 +2,7 @@
title: polars shift
categories: |
dataframe or lazyframe
-version: 0.98.0
+version: 0.99.0
dataframe_or_lazyframe: |
Shifts the values by a given period.
usage: |
diff --git a/commands/docs/polars_slice.md b/commands/docs/polars_slice.md
index 3756d961dfb..9c5a47d8312 100644
--- a/commands/docs/polars_slice.md
+++ b/commands/docs/polars_slice.md
@@ -2,7 +2,7 @@
title: polars slice
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates new dataframe from a slice of rows.
usage: |
diff --git a/commands/docs/polars_sort-by.md b/commands/docs/polars_sort-by.md
index a1cd062a6b7..3b01e1fb7ef 100644
--- a/commands/docs/polars_sort-by.md
+++ b/commands/docs/polars_sort-by.md
@@ -2,7 +2,7 @@
title: polars sort-by
categories: |
lazyframe
-version: 0.98.0
+version: 0.99.0
lazyframe: |
Sorts a lazy dataframe based on expression(s).
usage: |
diff --git a/commands/docs/polars_std.md b/commands/docs/polars_std.md
index 18b56fdd9b1..e73625d581a 100644
--- a/commands/docs/polars_std.md
+++ b/commands/docs/polars_std.md
@@ -2,7 +2,7 @@
title: polars std
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates a std expression for an aggregation of std value from columns in a dataframe.
usage: |
diff --git a/commands/docs/polars_store-get.md b/commands/docs/polars_store-get.md
index 5804e7e7db0..de68dc64ec5 100644
--- a/commands/docs/polars_store-get.md
+++ b/commands/docs/polars_store-get.md
@@ -2,7 +2,7 @@
title: polars store-get
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Gets a Dataframe or other object from the plugin cache.
usage: |
diff --git a/commands/docs/polars_store-ls.md b/commands/docs/polars_store-ls.md
index 1d7db032586..ffffd44254e 100644
--- a/commands/docs/polars_store-ls.md
+++ b/commands/docs/polars_store-ls.md
@@ -2,7 +2,7 @@
title: polars store-ls
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Lists stored polars objects.
usage: |
diff --git a/commands/docs/polars_store-rm.md b/commands/docs/polars_store-rm.md
index a48217b400f..77b2cb0f54c 100644
--- a/commands/docs/polars_store-rm.md
+++ b/commands/docs/polars_store-rm.md
@@ -2,7 +2,7 @@
title: polars store-rm
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Removes a stored Dataframe or other object from the plugin cache.
usage: |
diff --git a/commands/docs/polars_str-join.md b/commands/docs/polars_str-join.md
index 34940605961..158f2c1cd64 100644
--- a/commands/docs/polars_str-join.md
+++ b/commands/docs/polars_str-join.md
@@ -2,7 +2,7 @@
title: polars str-join
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Concatenates strings within a column or dataframes
usage: |
diff --git a/commands/docs/polars_str-lengths.md b/commands/docs/polars_str-lengths.md
index fdcb7852d85..415980d10f2 100644
--- a/commands/docs/polars_str-lengths.md
+++ b/commands/docs/polars_str-lengths.md
@@ -2,7 +2,7 @@
title: polars str-lengths
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Get lengths of all strings.
usage: |
diff --git a/commands/docs/polars_str-slice.md b/commands/docs/polars_str-slice.md
index 44352a4effc..370a64b10d4 100644
--- a/commands/docs/polars_str-slice.md
+++ b/commands/docs/polars_str-slice.md
@@ -2,7 +2,7 @@
title: polars str-slice
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Slices the string from the start position until the selected length.
usage: |
diff --git a/commands/docs/polars_strftime.md b/commands/docs/polars_strftime.md
index 1d9c4b1535a..9471fff74ae 100644
--- a/commands/docs/polars_strftime.md
+++ b/commands/docs/polars_strftime.md
@@ -2,7 +2,7 @@
title: polars strftime
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Formats date based on string rule.
usage: |
diff --git a/commands/docs/polars_sum.md b/commands/docs/polars_sum.md
index bee5af787e2..abd9ce68396 100644
--- a/commands/docs/polars_sum.md
+++ b/commands/docs/polars_sum.md
@@ -2,7 +2,7 @@
title: polars sum
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates a sum expression for an aggregation or aggregates columns to their sum value.
usage: |
diff --git a/commands/docs/polars_summary.md b/commands/docs/polars_summary.md
index a1ae339f77e..0949823eb3d 100644
--- a/commands/docs/polars_summary.md
+++ b/commands/docs/polars_summary.md
@@ -2,7 +2,7 @@
title: polars summary
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
For a dataframe, produces descriptive statistics (summary statistics) for its numeric columns.
usage: |
diff --git a/commands/docs/polars_take.md b/commands/docs/polars_take.md
index 9df480e9701..8703fd3066d 100644
--- a/commands/docs/polars_take.md
+++ b/commands/docs/polars_take.md
@@ -2,7 +2,7 @@
title: polars take
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Creates new dataframe using the given indices.
usage: |
diff --git a/commands/docs/polars_unique.md b/commands/docs/polars_unique.md
index 8d3fc862b31..813c92cd5e5 100644
--- a/commands/docs/polars_unique.md
+++ b/commands/docs/polars_unique.md
@@ -2,7 +2,7 @@
title: polars unique
categories: |
dataframe or lazyframe
-version: 0.98.0
+version: 0.99.0
dataframe_or_lazyframe: |
Returns unique values from a dataframe.
usage: |
diff --git a/commands/docs/polars_unpivot.md b/commands/docs/polars_unpivot.md
index 9d491e2a310..217ffa9634e 100644
--- a/commands/docs/polars_unpivot.md
+++ b/commands/docs/polars_unpivot.md
@@ -2,7 +2,7 @@
title: polars unpivot
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Unpivot a DataFrame from wide to long format.
usage: |
diff --git a/commands/docs/polars_uppercase.md b/commands/docs/polars_uppercase.md
index aa0191d7991..93fe4d73662 100644
--- a/commands/docs/polars_uppercase.md
+++ b/commands/docs/polars_uppercase.md
@@ -2,7 +2,7 @@
title: polars uppercase
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Uppercase the strings in the column.
usage: |
diff --git a/commands/docs/polars_value-counts.md b/commands/docs/polars_value-counts.md
index 4ad3cd229e2..faa63d2f4cc 100644
--- a/commands/docs/polars_value-counts.md
+++ b/commands/docs/polars_value-counts.md
@@ -2,7 +2,7 @@
title: polars value-counts
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Returns a dataframe with the counts for unique values in series.
usage: |
diff --git a/commands/docs/polars_var.md b/commands/docs/polars_var.md
index 9c4a545bf4a..6376c601e91 100644
--- a/commands/docs/polars_var.md
+++ b/commands/docs/polars_var.md
@@ -2,7 +2,7 @@
title: polars var
categories: |
dataframe
-version: 0.98.0
+version: 0.99.0
dataframe: |
Create a var expression for an aggregation.
usage: |
diff --git a/commands/docs/polars_when.md b/commands/docs/polars_when.md
index 5f6b16a8fb1..fcd59282197 100644
--- a/commands/docs/polars_when.md
+++ b/commands/docs/polars_when.md
@@ -2,7 +2,7 @@
title: polars when
categories: |
expression
-version: 0.98.0
+version: 0.99.0
expression: |
Creates and modifies a when expression.
usage: |
diff --git a/commands/docs/polars_with-column.md b/commands/docs/polars_with-column.md
index d2afdf8686f..461add2cae0 100644
--- a/commands/docs/polars_with-column.md
+++ b/commands/docs/polars_with-column.md
@@ -2,7 +2,7 @@
title: polars with-column
categories: |
dataframe or lazyframe
-version: 0.98.0
+version: 0.99.0
dataframe_or_lazyframe: |
Adds a series to the dataframe.
usage: |
diff --git a/commands/docs/port.md b/commands/docs/port.md
index f52b40b2012..f7a55bbb154 100644
--- a/commands/docs/port.md
+++ b/commands/docs/port.md
@@ -2,7 +2,7 @@
title: port
categories: |
network
-version: 0.98.0
+version: 0.99.0
network: |
Get a free port from system.
usage: |
diff --git a/commands/docs/prepend.md b/commands/docs/prepend.md
index db8a65f5c52..14e4917262f 100644
--- a/commands/docs/prepend.md
+++ b/commands/docs/prepend.md
@@ -2,7 +2,7 @@
title: prepend
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Prepend any number of rows to a table.
usage: |
diff --git a/commands/docs/print.md b/commands/docs/print.md
index dbcff5f172e..b350aa367aa 100644
--- a/commands/docs/print.md
+++ b/commands/docs/print.md
@@ -2,7 +2,7 @@
title: print
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Print the given values to stdout.
usage: |
diff --git a/commands/docs/ps.md b/commands/docs/ps.md
index a28826cbb10..83f53d5420e 100644
--- a/commands/docs/ps.md
+++ b/commands/docs/ps.md
@@ -2,7 +2,7 @@
title: ps
categories: |
system
-version: 0.98.0
+version: 0.99.0
system: |
View information about system processes.
usage: |
diff --git a/commands/docs/pwd.md b/commands/docs/pwd.md
index e55f3af0cb2..82b46b86791 100644
--- a/commands/docs/pwd.md
+++ b/commands/docs/pwd.md
@@ -2,7 +2,7 @@
title: pwd
categories: |
default
-version: 0.98.0
+version: 0.99.0
default: |
Return the current working directory
usage: |
diff --git a/commands/docs/query.md b/commands/docs/query.md
index ceea5b64b5c..1be72c55836 100644
--- a/commands/docs/query.md
+++ b/commands/docs/query.md
@@ -2,7 +2,7 @@
title: query
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Show all the query commands
usage: |
diff --git a/commands/docs/query_db.md b/commands/docs/query_db.md
index a81f59faa1b..80094442d04 100644
--- a/commands/docs/query_db.md
+++ b/commands/docs/query_db.md
@@ -2,7 +2,7 @@
title: query db
categories: |
database
-version: 0.98.0
+version: 0.99.0
database: |
Query a database using SQL.
usage: |
diff --git a/commands/docs/query_json.md b/commands/docs/query_json.md
index 4ff99f83977..83da827f702 100644
--- a/commands/docs/query_json.md
+++ b/commands/docs/query_json.md
@@ -2,7 +2,7 @@
title: query json
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
execute json query on json file (open --raw | query json 'query string')
usage: |
diff --git a/commands/docs/query_web.md b/commands/docs/query_web.md
index 947cf0d1390..3923916736d 100644
--- a/commands/docs/query_web.md
+++ b/commands/docs/query_web.md
@@ -2,7 +2,7 @@
title: query web
categories: |
network
-version: 0.98.0
+version: 0.99.0
network: |
execute selector query on html/web
usage: |
diff --git a/commands/docs/query_webpage-info.md b/commands/docs/query_webpage-info.md
index 9391b1fe31a..aa6789cd2c3 100644
--- a/commands/docs/query_webpage-info.md
+++ b/commands/docs/query_webpage-info.md
@@ -2,7 +2,7 @@
title: query webpage-info
categories: |
network
-version: 0.98.0
+version: 0.99.0
network: |
uses the webpage crate to extract info from html: title, description, language, links, RSS feeds, Opengraph, Schema.org, and more
usage: |
diff --git a/commands/docs/query_xml.md b/commands/docs/query_xml.md
index 9f2504f5e2f..2976ddec734 100644
--- a/commands/docs/query_xml.md
+++ b/commands/docs/query_xml.md
@@ -2,7 +2,7 @@
title: query xml
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
execute xpath query on xml
usage: |
diff --git a/commands/docs/random.md b/commands/docs/random.md
index 9b07ed63cd8..83a59053c2a 100644
--- a/commands/docs/random.md
+++ b/commands/docs/random.md
@@ -2,7 +2,7 @@
title: random
categories: |
random
-version: 0.98.0
+version: 0.99.0
random: |
Generate a random value.
usage: |
diff --git a/commands/docs/random_binary.md b/commands/docs/random_binary.md
index a6aef8272dc..ea561e746de 100644
--- a/commands/docs/random_binary.md
+++ b/commands/docs/random_binary.md
@@ -2,7 +2,7 @@
title: random binary
categories: |
random
-version: 0.98.0
+version: 0.99.0
random: |
Generate random bytes.
usage: |
@@ -36,3 +36,9 @@ Generate 16 random bytes
> random binary 16
```
+
+Generate 1 random kilobyte
+```nu
+> random binary 1kb
+
+```
diff --git a/commands/docs/random_bool.md b/commands/docs/random_bool.md
index d5e3bcc5f35..3585177437e 100644
--- a/commands/docs/random_bool.md
+++ b/commands/docs/random_bool.md
@@ -2,7 +2,7 @@
title: random bool
categories: |
random
-version: 0.98.0
+version: 0.99.0
random: |
Generate a random boolean value.
usage: |
diff --git a/commands/docs/random_chars.md b/commands/docs/random_chars.md
index 4bc0cdb19a9..880b83fccd5 100644
--- a/commands/docs/random_chars.md
+++ b/commands/docs/random_chars.md
@@ -2,7 +2,7 @@
title: random chars
categories: |
random
-version: 0.98.0
+version: 0.99.0
random: |
Generate random chars uniformly distributed over ASCII letters and numbers: a-z, A-Z and 0-9.
usage: |
@@ -20,7 +20,7 @@ usage: |
## Flags
- - `--length, -l {int}`: Number of chars (default 25)
+ - `--length, -l {one_of(int, filesize)}`: Number of chars (default 25)
## Input/output types:
@@ -42,3 +42,9 @@ Generate random chars with specified length
> random chars --length 20
```
+
+Generate one kilobyte of random chars
+```nu
+> random chars --length 1kb
+
+```
diff --git a/commands/docs/random_dice.md b/commands/docs/random_dice.md
index 16af02a712f..514bdad2ce0 100644
--- a/commands/docs/random_dice.md
+++ b/commands/docs/random_dice.md
@@ -2,7 +2,7 @@
title: random dice
categories: |
random
-version: 0.98.0
+version: 0.99.0
random: |
Generate a random dice roll.
usage: |
diff --git a/commands/docs/random_float.md b/commands/docs/random_float.md
index a6d2ef835df..e6d226c1f7b 100644
--- a/commands/docs/random_float.md
+++ b/commands/docs/random_float.md
@@ -2,7 +2,7 @@
title: random float
categories: |
random
-version: 0.98.0
+version: 0.99.0
random: |
Generate a random float within a range [min..max].
usage: |
diff --git a/commands/docs/random_int.md b/commands/docs/random_int.md
index fd400bfc8f2..b6c6ac6f677 100644
--- a/commands/docs/random_int.md
+++ b/commands/docs/random_int.md
@@ -2,7 +2,7 @@
title: random int
categories: |
random
-version: 0.98.0
+version: 0.99.0
random: |
Generate a random integer [min..max].
usage: |
diff --git a/commands/docs/random_uuid.md b/commands/docs/random_uuid.md
index 7dc728b76c7..905ae4ac09e 100644
--- a/commands/docs/random_uuid.md
+++ b/commands/docs/random_uuid.md
@@ -2,7 +2,7 @@
title: random uuid
categories: |
random
-version: 0.98.0
+version: 0.99.0
random: |
Generate a random uuid4 string.
usage: |
diff --git a/commands/docs/range.md b/commands/docs/range.md
index ec13f27c05d..da74d1273ec 100644
--- a/commands/docs/range.md
+++ b/commands/docs/range.md
@@ -2,7 +2,7 @@
title: range
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Return only the selected rows.
usage: |
diff --git a/commands/docs/reduce.md b/commands/docs/reduce.md
index a2ea6457c0b..08ac20d70fe 100644
--- a/commands/docs/reduce.md
+++ b/commands/docs/reduce.md
@@ -2,7 +2,7 @@
title: reduce
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Aggregate a list (starting from the left) to a single value using an accumulator closure.
usage: |
diff --git a/commands/docs/registry_query.md b/commands/docs/registry_query.md
index 3edbbee2239..5a6804c4819 100644
--- a/commands/docs/registry_query.md
+++ b/commands/docs/registry_query.md
@@ -2,7 +2,7 @@
title: registry query
categories: |
system
-version: 0.98.0
+version: 0.99.0
system: |
Query the Windows registry.
usage: |
diff --git a/commands/docs/reject.md b/commands/docs/reject.md
index e5f09992396..17dd2e9391e 100644
--- a/commands/docs/reject.md
+++ b/commands/docs/reject.md
@@ -2,7 +2,7 @@
title: reject
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Remove the given columns or rows from the table. Opposite of `select`.
usage: |
diff --git a/commands/docs/rename.md b/commands/docs/rename.md
index e2ee2fc795a..683661006ed 100644
--- a/commands/docs/rename.md
+++ b/commands/docs/rename.md
@@ -2,7 +2,7 @@
title: rename
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Creates a new table with columns renamed.
usage: |
diff --git a/commands/docs/return.md b/commands/docs/return.md
index c09e4fa0a44..b25c101a21e 100644
--- a/commands/docs/return.md
+++ b/commands/docs/return.md
@@ -2,7 +2,7 @@
title: return
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Return early from a function.
usage: |
diff --git a/commands/docs/reverse.md b/commands/docs/reverse.md
index 19618b4d9ef..963b6f4e590 100644
--- a/commands/docs/reverse.md
+++ b/commands/docs/reverse.md
@@ -2,7 +2,7 @@
title: reverse
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Reverses the input list or table.
usage: |
diff --git a/commands/docs/rm.md b/commands/docs/rm.md
index 8af86567da8..32a6eb28e00 100644
--- a/commands/docs/rm.md
+++ b/commands/docs/rm.md
@@ -2,7 +2,7 @@
title: rm
categories: |
filesystem
-version: 0.98.0
+version: 0.99.0
filesystem: |
Remove files and directories.
usage: |
diff --git a/commands/docs/roll.md b/commands/docs/roll.md
index 086c0e6c4bd..ed027973b8d 100644
--- a/commands/docs/roll.md
+++ b/commands/docs/roll.md
@@ -2,7 +2,7 @@
title: roll
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Rolling commands for tables.
usage: |
diff --git a/commands/docs/roll_down.md b/commands/docs/roll_down.md
index 76f7910c1a7..23207933e27 100644
--- a/commands/docs/roll_down.md
+++ b/commands/docs/roll_down.md
@@ -2,7 +2,7 @@
title: roll down
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Roll table rows down.
usage: |
diff --git a/commands/docs/roll_left.md b/commands/docs/roll_left.md
index a6ff6a214ec..d1513c168cd 100644
--- a/commands/docs/roll_left.md
+++ b/commands/docs/roll_left.md
@@ -2,7 +2,7 @@
title: roll left
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Roll record or table columns left.
usage: |
diff --git a/commands/docs/roll_right.md b/commands/docs/roll_right.md
index 0691c357483..f46328fdd9e 100644
--- a/commands/docs/roll_right.md
+++ b/commands/docs/roll_right.md
@@ -2,7 +2,7 @@
title: roll right
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Roll table columns right.
usage: |
diff --git a/commands/docs/roll_up.md b/commands/docs/roll_up.md
index e88f43d8118..8afe8a094e0 100644
--- a/commands/docs/roll_up.md
+++ b/commands/docs/roll_up.md
@@ -2,7 +2,7 @@
title: roll up
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Roll table rows up.
usage: |
diff --git a/commands/docs/rotate.md b/commands/docs/rotate.md
index 97b799dec5c..9107b509695 100644
--- a/commands/docs/rotate.md
+++ b/commands/docs/rotate.md
@@ -2,7 +2,7 @@
title: rotate
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Rotates a table or record clockwise (default) or counter-clockwise (use --ccw flag).
usage: |
diff --git a/commands/docs/run-external.md b/commands/docs/run-external.md
index 5ac1c38e4f5..ab84cfe2134 100644
--- a/commands/docs/run-external.md
+++ b/commands/docs/run-external.md
@@ -2,7 +2,7 @@
title: run-external
categories: |
system
-version: 0.98.0
+version: 0.99.0
system: |
Runs external command.
usage: |
diff --git a/commands/docs/save.md b/commands/docs/save.md
index ba502dd4412..bb6ea90d802 100644
--- a/commands/docs/save.md
+++ b/commands/docs/save.md
@@ -2,7 +2,7 @@
title: save
categories: |
filesystem
-version: 0.98.0
+version: 0.99.0
filesystem: |
Save a file.
usage: |
diff --git a/commands/docs/schema.md b/commands/docs/schema.md
index 388528c385b..0de54f96a8d 100644
--- a/commands/docs/schema.md
+++ b/commands/docs/schema.md
@@ -2,7 +2,7 @@
title: schema
categories: |
database
-version: 0.98.0
+version: 0.99.0
database: |
Show the schema of a SQLite database.
usage: |
diff --git a/commands/docs/scope.md b/commands/docs/scope.md
index b0dd58af681..cd8c6754a40 100644
--- a/commands/docs/scope.md
+++ b/commands/docs/scope.md
@@ -2,7 +2,7 @@
title: scope
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Commands for getting info about what is in scope.
usage: |
diff --git a/commands/docs/scope_aliases.md b/commands/docs/scope_aliases.md
index 89967665897..b6628b60af3 100644
--- a/commands/docs/scope_aliases.md
+++ b/commands/docs/scope_aliases.md
@@ -2,7 +2,7 @@
title: scope aliases
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Output info on the aliases in the current scope.
usage: |
diff --git a/commands/docs/scope_commands.md b/commands/docs/scope_commands.md
index 8faf572d8ba..faad08a1269 100644
--- a/commands/docs/scope_commands.md
+++ b/commands/docs/scope_commands.md
@@ -2,7 +2,7 @@
title: scope commands
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Output info on the commands in the current scope.
usage: |
diff --git a/commands/docs/scope_engine-stats.md b/commands/docs/scope_engine-stats.md
index d39aea6a0db..ef9b1e0e0d1 100644
--- a/commands/docs/scope_engine-stats.md
+++ b/commands/docs/scope_engine-stats.md
@@ -2,7 +2,7 @@
title: scope engine-stats
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Output stats on the engine in the current state.
usage: |
diff --git a/commands/docs/scope_externs.md b/commands/docs/scope_externs.md
index 2cb7679b6e6..4c53872d208 100644
--- a/commands/docs/scope_externs.md
+++ b/commands/docs/scope_externs.md
@@ -2,7 +2,7 @@
title: scope externs
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Output info on the known externals in the current scope.
usage: |
diff --git a/commands/docs/scope_modules.md b/commands/docs/scope_modules.md
index 1226d63fbb1..72d2a5d862c 100644
--- a/commands/docs/scope_modules.md
+++ b/commands/docs/scope_modules.md
@@ -2,7 +2,7 @@
title: scope modules
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Output info on the modules in the current scope.
usage: |
diff --git a/commands/docs/scope_variables.md b/commands/docs/scope_variables.md
index 79972ea1b35..d6f1d1912e8 100644
--- a/commands/docs/scope_variables.md
+++ b/commands/docs/scope_variables.md
@@ -2,7 +2,7 @@
title: scope variables
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Output info on the variables in the current scope.
usage: |
diff --git a/commands/docs/select.md b/commands/docs/select.md
index 38ebc4f4c6e..90eaf9a18a1 100644
--- a/commands/docs/select.md
+++ b/commands/docs/select.md
@@ -2,7 +2,7 @@
title: select
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Select only these columns or rows from the input. Opposite of `reject`.
usage: |
diff --git a/commands/docs/seq.md b/commands/docs/seq.md
index 5a47c66a59e..1ba05c110f5 100644
--- a/commands/docs/seq.md
+++ b/commands/docs/seq.md
@@ -2,7 +2,7 @@
title: seq
categories: |
generators
-version: 0.98.0
+version: 0.99.0
generators: |
Output sequences of numbers.
usage: |
diff --git a/commands/docs/seq_char.md b/commands/docs/seq_char.md
index 6093001845f..2857ae2a0eb 100644
--- a/commands/docs/seq_char.md
+++ b/commands/docs/seq_char.md
@@ -2,7 +2,7 @@
title: seq char
categories: |
generators
-version: 0.98.0
+version: 0.99.0
generators: |
Print a sequence of ASCII characters.
usage: |
diff --git a/commands/docs/seq_date.md b/commands/docs/seq_date.md
index 60cb6ab85ef..49cee79f7fc 100644
--- a/commands/docs/seq_date.md
+++ b/commands/docs/seq_date.md
@@ -2,7 +2,7 @@
title: seq date
categories: |
generators
-version: 0.98.0
+version: 0.99.0
generators: |
Print sequences of dates.
usage: |
diff --git a/commands/docs/shells.md b/commands/docs/shells.md
deleted file mode 100644
index 362768cc893..00000000000
--- a/commands/docs/shells.md
+++ /dev/null
@@ -1,32 +0,0 @@
----
-title: shells
-categories: |
- shells
-version: 0.98.0
-shells: |
- Lists all open shells.
-usage: |
- Lists all open shells.
----
-
-# `shells` for [shells](/commands/categories/shells.md)
-
-Lists all open shells.
-
-## Signature
-
-```> shells ```
-
-## Examples
-
-Enter a new shell at parent path '..' and show all opened shells
-```nu
-> enter ..; shells
-
-```
-
-Show currently active shell
-```nu
-> shells | where active == true
-
-```
diff --git a/commands/docs/shuffle.md b/commands/docs/shuffle.md
index 9e6e1524f1e..0ddaa3ceba2 100644
--- a/commands/docs/shuffle.md
+++ b/commands/docs/shuffle.md
@@ -2,7 +2,7 @@
title: shuffle
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Shuffle rows randomly.
usage: |
diff --git a/commands/docs/skip.md b/commands/docs/skip.md
index ffe46a2f34b..8571f216bec 100644
--- a/commands/docs/skip.md
+++ b/commands/docs/skip.md
@@ -2,7 +2,7 @@
title: skip
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Skip the first several rows of the input. Counterpart of `drop`. Opposite of `first`.
usage: |
diff --git a/commands/docs/skip_until.md b/commands/docs/skip_until.md
index 6eebbf8d786..24100449a1f 100644
--- a/commands/docs/skip_until.md
+++ b/commands/docs/skip_until.md
@@ -2,7 +2,7 @@
title: skip until
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Skip elements of the input until a predicate is true.
usage: |
diff --git a/commands/docs/skip_while.md b/commands/docs/skip_while.md
index 5875e20a4ed..ded2bcd74bc 100644
--- a/commands/docs/skip_while.md
+++ b/commands/docs/skip_while.md
@@ -2,7 +2,7 @@
title: skip while
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Skip elements of the input while a predicate is true.
usage: |
diff --git a/commands/docs/sleep.md b/commands/docs/sleep.md
index 5bcc05ca53f..fdd2f76adc1 100644
--- a/commands/docs/sleep.md
+++ b/commands/docs/sleep.md
@@ -2,7 +2,7 @@
title: sleep
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
Delay for a specified amount of time.
usage: |
diff --git a/commands/docs/sort-by.md b/commands/docs/sort-by.md
index 06d2a3578b2..ca6e5f408bc 100644
--- a/commands/docs/sort-by.md
+++ b/commands/docs/sort-by.md
@@ -2,17 +2,17 @@
title: sort-by
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
- Sort by the given columns, in increasing order.
+ Sort by the given cell path or closure.
usage: |
- Sort by the given columns, in increasing order.
+ Sort by the given cell path or closure.
---
# `sort-by` for [filters](/commands/categories/filters.md)
-Sort by the given columns, in increasing order.
+Sort by the given cell path or closure.
## Signature
@@ -21,12 +21,13 @@ usage: |
## Flags
- `--reverse, -r`: Sort in reverse order
- - `--ignore-case, -i`: Sort string-based columns case-insensitively
- - `--natural, -n`: Sort alphanumeric string-based columns naturally (1, 9, 10, 99, 100, ...)
+ - `--ignore-case, -i`: Sort string-based data case-insensitively
+ - `--natural, -n`: Sort alphanumeric string-based data naturally (1, 9, 10, 99, 100, ...)
+ - `--custom, -c`: Use closures to specify a custom sort order, rather than to compute a comparison key
## Parameters
- - `...rest`: The column(s) to sort by.
+ - `...rest`: The cell path(s) or closure(s) to compare elements by.
## Input/output types:
@@ -62,3 +63,48 @@ Sort a table by a column (reversed order)
╰───┴────────┴───────╯
```
+
+Sort by a nested value
+```nu
+> [[name info]; [Cairo {founded: 969}] [Kyoto {founded: 794}]] | sort-by info.founded
+╭───┬───────┬───────────────────╮
+│ # │ name │ info │
+├───┼───────┼───────────────────┤
+│ 0 │ Kyoto │ ╭─────────┬─────╮ │
+│ │ │ │ founded │ 794 │ │
+│ │ │ ╰─────────┴─────╯ │
+│ 1 │ Cairo │ ╭─────────┬─────╮ │
+│ │ │ │ founded │ 969 │ │
+│ │ │ ╰─────────┴─────╯ │
+╰───┴───────┴───────────────────╯
+
+```
+
+Sort by the last value in a list
+```nu
+> [[2 50] [10 1]] | sort-by { last }
+╭───┬────────────╮
+│ 0 │ ╭───┬────╮ │
+│ │ │ 0 │ 10 │ │
+│ │ │ 1 │ 1 │ │
+│ │ ╰───┴────╯ │
+│ 1 │ ╭───┬────╮ │
+│ │ │ 0 │ 2 │ │
+│ │ │ 1 │ 50 │ │
+│ │ ╰───┴────╯ │
+╰───┴────────────╯
+
+```
+
+Sort in a custom order
+```nu
+> [7 3 2 8 4] | sort-by -c {|a, b| $a < $b}
+╭───┬───╮
+│ 0 │ 2 │
+│ 1 │ 3 │
+│ 2 │ 4 │
+│ 3 │ 7 │
+│ 4 │ 8 │
+╰───┴───╯
+
+```
diff --git a/commands/docs/sort.md b/commands/docs/sort.md
index 8f1bc30cdf4..0bebff91f93 100644
--- a/commands/docs/sort.md
+++ b/commands/docs/sort.md
@@ -2,7 +2,7 @@
title: sort
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Sort in increasing order.
usage: |
@@ -34,7 +34,7 @@ usage: |
| record | record |
## Examples
-sort the list by increasing value
+Sort the list by increasing value
```nu
> [2 0 1] | sort
╭───┬───╮
@@ -45,7 +45,7 @@ sort the list by increasing value
```
-sort the list by decreasing value
+Sort the list by decreasing value
```nu
> [2 0 1] | sort --reverse
╭───┬───╮
@@ -56,7 +56,7 @@ sort the list by decreasing value
```
-sort a list of strings
+Sort a list of strings
```nu
> [betty amy sarah] | sort
╭───┬───────╮
@@ -67,7 +67,7 @@ sort a list of strings
```
-sort a list of strings in reverse
+Sort a list of strings in reverse
```nu
> [betty amy sarah] | sort --reverse
╭───┬───────╮
@@ -100,6 +100,17 @@ Sort strings (reversed case-insensitive)
```
+Sort alphanumeric strings in natural order
+```nu
+> [foo1 foo10 foo9] | sort -n
+╭───┬───────╮
+│ 0 │ foo1 │
+│ 1 │ foo9 │
+│ 2 │ foo10 │
+╰───┴───────╯
+
+```
+
Sort record by key (case-insensitive)
```nu
> {b: 3, a: 4} | sort
diff --git a/commands/docs/source-env.md b/commands/docs/source-env.md
index aa834428f77..c537b53494f 100644
--- a/commands/docs/source-env.md
+++ b/commands/docs/source-env.md
@@ -2,7 +2,7 @@
title: source-env
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Source the environment from a source file into the current environment.
usage: |
diff --git a/commands/docs/source.md b/commands/docs/source.md
index 7d07d1d3f2e..c79b72a11f0 100644
--- a/commands/docs/source.md
+++ b/commands/docs/source.md
@@ -2,7 +2,7 @@
title: source
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Runs a script file in the current context.
usage: |
diff --git a/commands/docs/split-by.md b/commands/docs/split-by.md
index b70b04fb96b..42d64b59cc3 100644
--- a/commands/docs/split-by.md
+++ b/commands/docs/split-by.md
@@ -2,7 +2,7 @@
title: split-by
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Split a record into groups.
usage: |
diff --git a/commands/docs/split.md b/commands/docs/split.md
index 740949fe647..086b6cf5458 100644
--- a/commands/docs/split.md
+++ b/commands/docs/split.md
@@ -2,7 +2,7 @@
title: split
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Split contents across desired subcommand (like row, column) via the separator.
usage: |
diff --git a/commands/docs/split_cell-path.md b/commands/docs/split_cell-path.md
index e8ae4966b2e..5a23ebce91a 100644
--- a/commands/docs/split_cell-path.md
+++ b/commands/docs/split_cell-path.md
@@ -2,7 +2,7 @@
title: split cell-path
categories: |
conversions
-version: 0.98.0
+version: 0.99.0
conversions: |
Split a cell-path into its components.
usage: |
diff --git a/commands/docs/split_chars.md b/commands/docs/split_chars.md
index 383bd21745d..2f84b128439 100644
--- a/commands/docs/split_chars.md
+++ b/commands/docs/split_chars.md
@@ -2,7 +2,7 @@
title: split chars
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Split a string into a list of characters.
usage: |
diff --git a/commands/docs/split_column.md b/commands/docs/split_column.md
index 8e2faea5497..cd53f7bb084 100644
--- a/commands/docs/split_column.md
+++ b/commands/docs/split_column.md
@@ -2,7 +2,7 @@
title: split column
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Split a string into multiple columns using a separator.
usage: |
diff --git a/commands/docs/split_list.md b/commands/docs/split_list.md
index 68b09f1e24e..73932403b0b 100644
--- a/commands/docs/split_list.md
+++ b/commands/docs/split_list.md
@@ -2,7 +2,7 @@
title: split list
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Split a list into multiple lists using a separator.
usage: |
diff --git a/commands/docs/split_row.md b/commands/docs/split_row.md
index 8ee8297f6aa..e826e0bf240 100644
--- a/commands/docs/split_row.md
+++ b/commands/docs/split_row.md
@@ -2,7 +2,7 @@
title: split row
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Split a string into multiple rows using a separator.
usage: |
diff --git a/commands/docs/split_words.md b/commands/docs/split_words.md
index b770ebeb957..6bc5a77cd27 100644
--- a/commands/docs/split_words.md
+++ b/commands/docs/split_words.md
@@ -2,7 +2,7 @@
title: split words
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Split a string's words into separate rows.
usage: |
diff --git a/commands/docs/start.md b/commands/docs/start.md
index 27b1e2ee8b9..398f782c9fc 100644
--- a/commands/docs/start.md
+++ b/commands/docs/start.md
@@ -2,7 +2,7 @@
title: start
categories: |
filesystem
-version: 0.98.0
+version: 0.99.0
filesystem: |
Open a folder, file or website in the default application or viewer.
usage: |
diff --git a/commands/docs/stor.md b/commands/docs/stor.md
index 6c0427e2c9a..9ff4356879a 100644
--- a/commands/docs/stor.md
+++ b/commands/docs/stor.md
@@ -2,7 +2,7 @@
title: stor
categories: |
database
-version: 0.98.0
+version: 0.99.0
database: |
Various commands for working with the in-memory sqlite database.
usage: |
diff --git a/commands/docs/stor_create.md b/commands/docs/stor_create.md
index 5bd7e1cfec2..17e9656156f 100644
--- a/commands/docs/stor_create.md
+++ b/commands/docs/stor_create.md
@@ -2,7 +2,7 @@
title: stor create
categories: |
database
-version: 0.98.0
+version: 0.99.0
database: |
Create a table in the in-memory sqlite database.
usage: |
diff --git a/commands/docs/stor_delete.md b/commands/docs/stor_delete.md
index dea5b14c296..ee695213403 100644
--- a/commands/docs/stor_delete.md
+++ b/commands/docs/stor_delete.md
@@ -2,7 +2,7 @@
title: stor delete
categories: |
database
-version: 0.98.0
+version: 0.99.0
database: |
Delete a table or specified rows in the in-memory sqlite database.
usage: |
diff --git a/commands/docs/stor_export.md b/commands/docs/stor_export.md
index a57346ff456..9fbc7b74f56 100644
--- a/commands/docs/stor_export.md
+++ b/commands/docs/stor_export.md
@@ -2,7 +2,7 @@
title: stor export
categories: |
database
-version: 0.98.0
+version: 0.99.0
database: |
Export the in-memory sqlite database to a sqlite database file.
usage: |
diff --git a/commands/docs/stor_import.md b/commands/docs/stor_import.md
index f775a4563c6..3773bb4d321 100644
--- a/commands/docs/stor_import.md
+++ b/commands/docs/stor_import.md
@@ -2,7 +2,7 @@
title: stor import
categories: |
database
-version: 0.98.0
+version: 0.99.0
database: |
Import a sqlite database file into the in-memory sqlite database.
usage: |
diff --git a/commands/docs/stor_insert.md b/commands/docs/stor_insert.md
index 55e3a4e1da6..075c0514292 100644
--- a/commands/docs/stor_insert.md
+++ b/commands/docs/stor_insert.md
@@ -2,7 +2,7 @@
title: stor insert
categories: |
database
-version: 0.98.0
+version: 0.99.0
database: |
Insert information into a specified table in the in-memory sqlite database.
usage: |
diff --git a/commands/docs/stor_open.md b/commands/docs/stor_open.md
index 2e1523ec9c1..d16cdb5cf63 100644
--- a/commands/docs/stor_open.md
+++ b/commands/docs/stor_open.md
@@ -2,7 +2,7 @@
title: stor open
categories: |
database
-version: 0.98.0
+version: 0.99.0
database: |
Opens the in-memory sqlite database.
usage: |
diff --git a/commands/docs/stor_reset.md b/commands/docs/stor_reset.md
index bb0df5ceeab..f23f787a6a7 100644
--- a/commands/docs/stor_reset.md
+++ b/commands/docs/stor_reset.md
@@ -2,7 +2,7 @@
title: stor reset
categories: |
database
-version: 0.98.0
+version: 0.99.0
database: |
Reset the in-memory database by dropping all tables.
usage: |
diff --git a/commands/docs/stor_update.md b/commands/docs/stor_update.md
index a8b92d8fc9c..5c019ff81ea 100644
--- a/commands/docs/stor_update.md
+++ b/commands/docs/stor_update.md
@@ -2,7 +2,7 @@
title: stor update
categories: |
database
-version: 0.98.0
+version: 0.99.0
database: |
Update information in a specified table in the in-memory sqlite database.
usage: |
diff --git a/commands/docs/str.md b/commands/docs/str.md
index 81ba8d0958c..015cd8d370f 100644
--- a/commands/docs/str.md
+++ b/commands/docs/str.md
@@ -2,7 +2,7 @@
title: str
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Various commands for working with string data.
usage: |
diff --git a/commands/docs/str_camel-case.md b/commands/docs/str_camel-case.md
index 948c35dbe7d..d34e9def22b 100644
--- a/commands/docs/str_camel-case.md
+++ b/commands/docs/str_camel-case.md
@@ -2,7 +2,7 @@
title: str camel-case
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Convert a string to camelCase.
usage: |
diff --git a/commands/docs/str_capitalize.md b/commands/docs/str_capitalize.md
index 382114d8f8e..225c01df407 100644
--- a/commands/docs/str_capitalize.md
+++ b/commands/docs/str_capitalize.md
@@ -2,7 +2,7 @@
title: str capitalize
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Capitalize first letter of text.
usage: |
diff --git a/commands/docs/str_contains.md b/commands/docs/str_contains.md
index 98e1aa00a0f..e35a0d8ba43 100644
--- a/commands/docs/str_contains.md
+++ b/commands/docs/str_contains.md
@@ -2,7 +2,7 @@
title: str contains
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Checks if string input contains a substring.
usage: |
diff --git a/commands/docs/str_distance.md b/commands/docs/str_distance.md
index fd9fa6182de..e434193cd41 100644
--- a/commands/docs/str_distance.md
+++ b/commands/docs/str_distance.md
@@ -2,7 +2,7 @@
title: str distance
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Compare two strings and return the edit distance/Levenshtein distance.
usage: |
diff --git a/commands/docs/str_downcase.md b/commands/docs/str_downcase.md
index f78a62bb98f..9615eb21840 100644
--- a/commands/docs/str_downcase.md
+++ b/commands/docs/str_downcase.md
@@ -2,7 +2,7 @@
title: str downcase
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Make text lowercase.
usage: |
diff --git a/commands/docs/str_ends-with.md b/commands/docs/str_ends-with.md
index a3b6360aacb..ecd17ffd4a5 100644
--- a/commands/docs/str_ends-with.md
+++ b/commands/docs/str_ends-with.md
@@ -2,7 +2,7 @@
title: str ends-with
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Check if an input ends with a string.
usage: |
diff --git a/commands/docs/str_expand.md b/commands/docs/str_expand.md
index 5946aa9c536..3739d39e1d6 100644
--- a/commands/docs/str_expand.md
+++ b/commands/docs/str_expand.md
@@ -2,7 +2,7 @@
title: str expand
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Generates all possible combinations defined in brace expansion syntax.
usage: |
diff --git a/commands/docs/str_index-of.md b/commands/docs/str_index-of.md
index 4964699917f..980cd0d21a9 100644
--- a/commands/docs/str_index-of.md
+++ b/commands/docs/str_index-of.md
@@ -2,7 +2,7 @@
title: str index-of
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Returns start index of first occurrence of string in input, or -1 if no match.
usage: |
diff --git a/commands/docs/str_join.md b/commands/docs/str_join.md
index 8931334b83b..aea6a47db34 100644
--- a/commands/docs/str_join.md
+++ b/commands/docs/str_join.md
@@ -2,7 +2,7 @@
title: str join
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Concatenate multiple strings into a single string, with an optional separator between each.
usage: |
diff --git a/commands/docs/str_kebab-case.md b/commands/docs/str_kebab-case.md
index 4853a752bf3..ddba7ab0258 100644
--- a/commands/docs/str_kebab-case.md
+++ b/commands/docs/str_kebab-case.md
@@ -2,7 +2,7 @@
title: str kebab-case
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Convert a string to kebab-case.
usage: |
diff --git a/commands/docs/str_length.md b/commands/docs/str_length.md
index fd31bf80194..928f04f4ab7 100644
--- a/commands/docs/str_length.md
+++ b/commands/docs/str_length.md
@@ -2,7 +2,7 @@
title: str length
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Output the length of any strings in the pipeline.
usage: |
diff --git a/commands/docs/str_pascal-case.md b/commands/docs/str_pascal-case.md
index 921491f65f3..9538b5860d3 100644
--- a/commands/docs/str_pascal-case.md
+++ b/commands/docs/str_pascal-case.md
@@ -2,7 +2,7 @@
title: str pascal-case
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Convert a string to PascalCase.
usage: |
diff --git a/commands/docs/str_replace.md b/commands/docs/str_replace.md
index 3a54a68f5bf..11f89c0f3ad 100644
--- a/commands/docs/str_replace.md
+++ b/commands/docs/str_replace.md
@@ -2,7 +2,7 @@
title: str replace
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Find and replace text.
usage: |
@@ -60,13 +60,19 @@ Find and replace contents with capture group using regular expression
my_library.nu
```
-Find and replace all occurrences of find string using regular expression
+Find and replace contents with capture group using regular expression, with escapes
+```nu
+> 'hello=world' | str replace -r '\$?(?.*)=(?.*)' '$$$varname = $value'
+$hello = world
+```
+
+Find and replace all occurrences of found string using regular expression
```nu
> 'abc abc abc' | str replace --all --regex 'b' 'z'
azc azc azc
```
-Find and replace all occurrences of find string in table using regular expression
+Find and replace all occurrences of found string in table using regular expression
```nu
> [[ColA ColB ColC]; [abc abc ads]] | str replace --all --regex 'b' 'z' ColA ColC
╭───┬──────┬──────┬──────╮
@@ -77,7 +83,7 @@ Find and replace all occurrences of find string in table using regular expressio
```
-Find and replace all occurrences of find string in record using regular expression
+Find and replace all occurrences of found string in record using regular expression
```nu
> { KeyA: abc, KeyB: abc, KeyC: ads } | str replace --all --regex 'b' 'z' KeyA KeyC
╭──────┬─────╮
diff --git a/commands/docs/str_reverse.md b/commands/docs/str_reverse.md
index 9c310b9fdf8..dcc70269fb9 100644
--- a/commands/docs/str_reverse.md
+++ b/commands/docs/str_reverse.md
@@ -2,7 +2,7 @@
title: str reverse
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Reverse every string in the pipeline.
usage: |
diff --git a/commands/docs/str_screaming-snake-case.md b/commands/docs/str_screaming-snake-case.md
index 8541d4f00f3..7a35516b6ce 100644
--- a/commands/docs/str_screaming-snake-case.md
+++ b/commands/docs/str_screaming-snake-case.md
@@ -2,7 +2,7 @@
title: str screaming-snake-case
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Convert a string to SCREAMING_SNAKE_CASE.
usage: |
diff --git a/commands/docs/str_snake-case.md b/commands/docs/str_snake-case.md
index bf6d5a90b0b..51d15a496fe 100644
--- a/commands/docs/str_snake-case.md
+++ b/commands/docs/str_snake-case.md
@@ -2,7 +2,7 @@
title: str snake-case
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Convert a string to snake_case.
usage: |
diff --git a/commands/docs/str_starts-with.md b/commands/docs/str_starts-with.md
index df2eb657cb5..c7e14c4cc95 100644
--- a/commands/docs/str_starts-with.md
+++ b/commands/docs/str_starts-with.md
@@ -2,7 +2,7 @@
title: str starts-with
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Check if an input starts with a string.
usage: |
diff --git a/commands/docs/str_stats.md b/commands/docs/str_stats.md
index 3956108532d..045a7507fef 100644
--- a/commands/docs/str_stats.md
+++ b/commands/docs/str_stats.md
@@ -2,7 +2,7 @@
title: str stats
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Gather word count statistics on the text.
usage: |
@@ -30,35 +30,38 @@ usage: |
Count the number of words in a string
```nu
> "There are seven words in this sentence" | str stats
-╭───────────┬────╮
-│ lines │ 1 │
-│ words │ 7 │
-│ bytes │ 38 │
-│ chars │ 38 │
-│ graphemes │ 38 │
-╰───────────┴────╯
+╭───────────────┬────╮
+│ lines │ 1 │
+│ words │ 7 │
+│ bytes │ 38 │
+│ chars │ 38 │
+│ graphemes │ 38 │
+│ unicode-width │ 38 │
+╰───────────────┴────╯
```
Counts unicode characters
```nu
> '今天天气真好' | str stats
-╭───────────┬────╮
-│ lines │ 1 │
-│ words │ 6 │
-│ bytes │ 18 │
-│ chars │ 6 │
-│ graphemes │ 6 │
-╰───────────┴────╯
+╭───────────────┬────╮
+│ lines │ 1 │
+│ words │ 6 │
+│ bytes │ 18 │
+│ chars │ 6 │
+│ graphemes │ 6 │
+│ unicode-width │ 12 │
+╰───────────────┴────╯
```
Counts Unicode characters correctly in a string
```nu
> "Amélie Amelie" | str stats
-╭───────────┬────╮
-│ lines │ 1 │
-│ words │ 2 │
-│ bytes │ 15 │
-│ chars │ 14 │
-│ graphemes │ 13 │
-╰───────────┴────╯
+╭───────────────┬────╮
+│ lines │ 1 │
+│ words │ 2 │
+│ bytes │ 15 │
+│ chars │ 14 │
+│ graphemes │ 13 │
+│ unicode-width │ 13 │
+╰───────────────┴────╯
```
diff --git a/commands/docs/str_substring.md b/commands/docs/str_substring.md
index 9a3116f57a8..b0ec9cbdf48 100644
--- a/commands/docs/str_substring.md
+++ b/commands/docs/str_substring.md
@@ -2,7 +2,7 @@
title: str substring
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Get part of a string. Note that the first character of a string is index 0.
usage: |
diff --git a/commands/docs/str_title-case.md b/commands/docs/str_title-case.md
index ac1855f6a65..c0650af0078 100644
--- a/commands/docs/str_title-case.md
+++ b/commands/docs/str_title-case.md
@@ -2,7 +2,7 @@
title: str title-case
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Convert a string to Title Case.
usage: |
diff --git a/commands/docs/str_trim.md b/commands/docs/str_trim.md
index 94ef2c5f951..a3864ce44c1 100644
--- a/commands/docs/str_trim.md
+++ b/commands/docs/str_trim.md
@@ -2,7 +2,7 @@
title: str trim
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Trim whitespace or specific character.
usage: |
diff --git a/commands/docs/str_upcase.md b/commands/docs/str_upcase.md
index 3e2bf13150b..c5cabad2be1 100644
--- a/commands/docs/str_upcase.md
+++ b/commands/docs/str_upcase.md
@@ -2,7 +2,7 @@
title: str upcase
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Make text uppercase.
usage: |
diff --git a/commands/docs/sys.md b/commands/docs/sys.md
index 2538d087b61..9305d3de3be 100644
--- a/commands/docs/sys.md
+++ b/commands/docs/sys.md
@@ -2,7 +2,7 @@
title: sys
categories: |
system
-version: 0.98.0
+version: 0.99.0
system: |
View information about the system.
usage: |
diff --git a/commands/docs/sys_cpu.md b/commands/docs/sys_cpu.md
index becd1cf7c0b..962088283ec 100644
--- a/commands/docs/sys_cpu.md
+++ b/commands/docs/sys_cpu.md
@@ -2,7 +2,7 @@
title: sys cpu
categories: |
system
-version: 0.98.0
+version: 0.99.0
system: |
View information about the system CPUs.
usage: |
diff --git a/commands/docs/sys_disks.md b/commands/docs/sys_disks.md
index e918ee1d3fe..e6618564784 100644
--- a/commands/docs/sys_disks.md
+++ b/commands/docs/sys_disks.md
@@ -2,7 +2,7 @@
title: sys disks
categories: |
system
-version: 0.98.0
+version: 0.99.0
system: |
View information about the system disks.
usage: |
diff --git a/commands/docs/sys_host.md b/commands/docs/sys_host.md
index 794be2972e7..40db3e5b54d 100644
--- a/commands/docs/sys_host.md
+++ b/commands/docs/sys_host.md
@@ -2,7 +2,7 @@
title: sys host
categories: |
system
-version: 0.98.0
+version: 0.99.0
system: |
View information about the system host.
usage: |
diff --git a/commands/docs/sys_mem.md b/commands/docs/sys_mem.md
index 7a3dc62493d..4e60fd6c747 100644
--- a/commands/docs/sys_mem.md
+++ b/commands/docs/sys_mem.md
@@ -2,7 +2,7 @@
title: sys mem
categories: |
system
-version: 0.98.0
+version: 0.99.0
system: |
View information about the system memory.
usage: |
diff --git a/commands/docs/sys_net.md b/commands/docs/sys_net.md
index 9de74493d1c..0b255c9cdfe 100644
--- a/commands/docs/sys_net.md
+++ b/commands/docs/sys_net.md
@@ -2,7 +2,7 @@
title: sys net
categories: |
system
-version: 0.98.0
+version: 0.99.0
system: |
View information about the system network interfaces.
usage: |
diff --git a/commands/docs/sys_temp.md b/commands/docs/sys_temp.md
index 8147416fced..d75ad50c21c 100644
--- a/commands/docs/sys_temp.md
+++ b/commands/docs/sys_temp.md
@@ -2,7 +2,7 @@
title: sys temp
categories: |
system
-version: 0.98.0
+version: 0.99.0
system: |
View the temperatures of system components.
usage: |
diff --git a/commands/docs/sys_users.md b/commands/docs/sys_users.md
index 37eb510cc3b..d8a3861705f 100644
--- a/commands/docs/sys_users.md
+++ b/commands/docs/sys_users.md
@@ -2,7 +2,7 @@
title: sys users
categories: |
system
-version: 0.98.0
+version: 0.99.0
system: |
View information about the users on the system.
usage: |
diff --git a/commands/docs/table.md b/commands/docs/table.md
index ecfc94e3732..fa358f13eff 100644
--- a/commands/docs/table.md
+++ b/commands/docs/table.md
@@ -2,7 +2,7 @@
title: table
categories: |
viewers
-version: 0.98.0
+version: 0.99.0
viewers: |
Render the table.
usage: |
diff --git a/commands/docs/take.md b/commands/docs/take.md
index 3e695b8287f..5c441b721ec 100644
--- a/commands/docs/take.md
+++ b/commands/docs/take.md
@@ -2,7 +2,7 @@
title: take
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Take only the first n elements of a list, or the first n bytes of a binary value.
usage: |
diff --git a/commands/docs/take_until.md b/commands/docs/take_until.md
index e6fe72da107..5b2de2aa383 100644
--- a/commands/docs/take_until.md
+++ b/commands/docs/take_until.md
@@ -2,7 +2,7 @@
title: take until
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Take elements of the input until a predicate is true.
usage: |
diff --git a/commands/docs/take_while.md b/commands/docs/take_while.md
index a566d676e59..091f162e124 100644
--- a/commands/docs/take_while.md
+++ b/commands/docs/take_while.md
@@ -2,7 +2,7 @@
title: take while
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Take elements of the input while a predicate is true.
usage: |
diff --git a/commands/docs/tee.md b/commands/docs/tee.md
index 1b7e7399e91..44302b028e8 100644
--- a/commands/docs/tee.md
+++ b/commands/docs/tee.md
@@ -2,7 +2,7 @@
title: tee
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Copy a stream to another command in parallel.
usage: |
diff --git a/commands/docs/term_size.md b/commands/docs/term_size.md
index 27ed4b62115..39eb7e02d5f 100644
--- a/commands/docs/term_size.md
+++ b/commands/docs/term_size.md
@@ -2,7 +2,7 @@
title: term size
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
Returns a record containing the number of columns (width) and rows (height) of the terminal.
usage: |
diff --git a/commands/docs/timeit.md b/commands/docs/timeit.md
index d598d9ee64d..f5eb1abd216 100644
--- a/commands/docs/timeit.md
+++ b/commands/docs/timeit.md
@@ -2,7 +2,7 @@
title: timeit
categories: |
debug
-version: 0.98.0
+version: 0.99.0
debug: |
Time the running time of a block.
usage: |
diff --git a/commands/docs/to.md b/commands/docs/to.md
index df8a336caa4..31be42019d3 100644
--- a/commands/docs/to.md
+++ b/commands/docs/to.md
@@ -2,7 +2,7 @@
title: to
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Translate structured data to a format.
usage: |
diff --git a/commands/docs/to_csv.md b/commands/docs/to_csv.md
index 140f8a46635..15fc7011b85 100644
--- a/commands/docs/to_csv.md
+++ b/commands/docs/to_csv.md
@@ -2,7 +2,7 @@
title: to csv
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Convert table into .csv text .
usage: |
diff --git a/commands/docs/to_html.md b/commands/docs/to_html.md
index 63bfa966d3f..a9f86e6a352 100644
--- a/commands/docs/to_html.md
+++ b/commands/docs/to_html.md
@@ -2,7 +2,7 @@
title: to html
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Convert table into simple HTML.
usage: |
diff --git a/commands/docs/to_json.md b/commands/docs/to_json.md
index fc5b20ef952..08b05fb1980 100644
--- a/commands/docs/to_json.md
+++ b/commands/docs/to_json.md
@@ -2,7 +2,7 @@
title: to json
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Converts table data into JSON text.
usage: |
diff --git a/commands/docs/to_md.md b/commands/docs/to_md.md
index 3f157be5766..14c0bf4054a 100644
--- a/commands/docs/to_md.md
+++ b/commands/docs/to_md.md
@@ -2,7 +2,7 @@
title: to md
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Convert table into simple Markdown.
usage: |
diff --git a/commands/docs/to_msgpack.md b/commands/docs/to_msgpack.md
index f180dbf24c2..d5d77f0f58a 100644
--- a/commands/docs/to_msgpack.md
+++ b/commands/docs/to_msgpack.md
@@ -2,7 +2,7 @@
title: to msgpack
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Convert Nu values into MessagePack.
usage: |
diff --git a/commands/docs/to_msgpackz.md b/commands/docs/to_msgpackz.md
index 51946126fb3..a64616d3c40 100644
--- a/commands/docs/to_msgpackz.md
+++ b/commands/docs/to_msgpackz.md
@@ -2,7 +2,7 @@
title: to msgpackz
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Convert Nu values into brotli-compressed MessagePack.
usage: |
diff --git a/commands/docs/to_nuon.md b/commands/docs/to_nuon.md
index 86094623e2e..2c621db3567 100644
--- a/commands/docs/to_nuon.md
+++ b/commands/docs/to_nuon.md
@@ -2,7 +2,7 @@
title: to nuon
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Converts table data into Nuon (Nushell Object Notation) text.
usage: |
diff --git a/commands/docs/to_plist.md b/commands/docs/to_plist.md
index bf325bd9c60..1f974ef1e78 100644
--- a/commands/docs/to_plist.md
+++ b/commands/docs/to_plist.md
@@ -2,7 +2,7 @@
title: to plist
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Convert Nu values into plist
usage: |
diff --git a/commands/docs/to_text.md b/commands/docs/to_text.md
index cc94420208d..cf014236c60 100644
--- a/commands/docs/to_text.md
+++ b/commands/docs/to_text.md
@@ -2,7 +2,7 @@
title: to text
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Converts data into simple text.
usage: |
diff --git a/commands/docs/to_toml.md b/commands/docs/to_toml.md
index b4e086624a2..1ffdf09d787 100644
--- a/commands/docs/to_toml.md
+++ b/commands/docs/to_toml.md
@@ -2,7 +2,7 @@
title: to toml
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Convert record into .toml text.
usage: |
diff --git a/commands/docs/to_tsv.md b/commands/docs/to_tsv.md
index 2cca8d19b09..fd28c50aa6e 100644
--- a/commands/docs/to_tsv.md
+++ b/commands/docs/to_tsv.md
@@ -2,7 +2,7 @@
title: to tsv
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Convert table into .tsv text.
usage: |
diff --git a/commands/docs/to_xml.md b/commands/docs/to_xml.md
index 297fbcb136a..43352f79a91 100644
--- a/commands/docs/to_xml.md
+++ b/commands/docs/to_xml.md
@@ -2,7 +2,7 @@
title: to xml
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Convert special record structure into .xml text.
usage: |
diff --git a/commands/docs/to_yaml.md b/commands/docs/to_yaml.md
index 69d675044e1..77a5ee46ea5 100644
--- a/commands/docs/to_yaml.md
+++ b/commands/docs/to_yaml.md
@@ -2,7 +2,7 @@
title: to yaml
categories: |
formats
-version: 0.98.0
+version: 0.99.0
formats: |
Convert table into .yaml/.yml text.
usage: |
diff --git a/commands/docs/touch.md b/commands/docs/touch.md
index c2617c966dd..ad7f9afc490 100644
--- a/commands/docs/touch.md
+++ b/commands/docs/touch.md
@@ -2,7 +2,7 @@
title: touch
categories: |
filesystem
-version: 0.98.0
+version: 0.99.0
filesystem: |
Creates one or more files.
usage: |
diff --git a/commands/docs/transpose.md b/commands/docs/transpose.md
index df0ea3f43d1..d718b468723 100644
--- a/commands/docs/transpose.md
+++ b/commands/docs/transpose.md
@@ -2,7 +2,7 @@
title: transpose
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Transposes the table contents so rows become columns and columns become rows.
usage: |
@@ -20,7 +20,7 @@ usage: |
## Flags
- - `--header-row, -r`: treat the first row as column names
+ - `--header-row, -r`: use the first input column as the table header-row (or keynames when combined with --as-record)
- `--ignore-titles, -i`: don't transpose the column names into values
- `--as-record, -d`: transfer to record if the result is a table and contains only one row
- `--keep-last, -l`: on repetition of record fields due to `header-row`, keep the last value obtained
diff --git a/commands/docs/try.md b/commands/docs/try.md
index 1aaec2bf7b7..95d0f39d6fb 100644
--- a/commands/docs/try.md
+++ b/commands/docs/try.md
@@ -2,7 +2,7 @@
title: try
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Try to run a block, if it fails optionally run a catch closure.
usage: |
diff --git a/commands/docs/tutor.md b/commands/docs/tutor.md
index 288065f2422..6c3d385a156 100644
--- a/commands/docs/tutor.md
+++ b/commands/docs/tutor.md
@@ -2,7 +2,7 @@
title: tutor
categories: |
misc
-version: 0.98.0
+version: 0.99.0
misc: |
Run the tutorial. To begin, run: tutor.
usage: |
diff --git a/commands/docs/ulimit.md b/commands/docs/ulimit.md
index 8571bd0d380..a74c54e2114 100644
--- a/commands/docs/ulimit.md
+++ b/commands/docs/ulimit.md
@@ -2,7 +2,7 @@
title: ulimit
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
Set or get resource usage limits.
usage: |
diff --git a/commands/docs/uname.md b/commands/docs/uname.md
index 317bb1207c5..9d7d1b0d8a9 100644
--- a/commands/docs/uname.md
+++ b/commands/docs/uname.md
@@ -2,7 +2,7 @@
title: uname
categories: |
system
-version: 0.98.0
+version: 0.99.0
system: |
Print certain system information using uutils/coreutils uname.
usage: |
diff --git a/commands/docs/uniq-by.md b/commands/docs/uniq-by.md
index 6c79b902eac..f7a74e7827a 100644
--- a/commands/docs/uniq-by.md
+++ b/commands/docs/uniq-by.md
@@ -2,7 +2,7 @@
title: uniq-by
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Return the distinct values in the input by the given column(s).
usage: |
diff --git a/commands/docs/uniq.md b/commands/docs/uniq.md
index 0dbc95721d0..92b4ea661f6 100644
--- a/commands/docs/uniq.md
+++ b/commands/docs/uniq.md
@@ -2,7 +2,7 @@
title: uniq
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Return the distinct values in the input.
usage: |
diff --git a/commands/docs/update.md b/commands/docs/update.md
index 23b60cf7e84..4f92459a7ad 100644
--- a/commands/docs/update.md
+++ b/commands/docs/update.md
@@ -2,7 +2,7 @@
title: update
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Update an existing column to have a new value.
usage: |
diff --git a/commands/docs/update_cells.md b/commands/docs/update_cells.md
index d29c74a55ff..a2f5dd2bb37 100644
--- a/commands/docs/update_cells.md
+++ b/commands/docs/update_cells.md
@@ -2,7 +2,7 @@
title: update cells
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Update the table cells.
usage: |
diff --git a/commands/docs/upsert.md b/commands/docs/upsert.md
index 216dc0ae995..436912df5f3 100644
--- a/commands/docs/upsert.md
+++ b/commands/docs/upsert.md
@@ -2,7 +2,7 @@
title: upsert
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Update an existing column to have a new value, or insert a new column.
usage: |
diff --git a/commands/docs/url.md b/commands/docs/url.md
index 8b58c4ff29b..82d7a23d583 100644
--- a/commands/docs/url.md
+++ b/commands/docs/url.md
@@ -2,7 +2,7 @@
title: url
categories: |
network
-version: 0.98.0
+version: 0.99.0
network: |
Various commands for working with URLs.
usage: |
diff --git a/commands/docs/url_build-query.md b/commands/docs/url_build-query.md
index 51de3031438..5d80f081c48 100644
--- a/commands/docs/url_build-query.md
+++ b/commands/docs/url_build-query.md
@@ -2,7 +2,7 @@
title: url build-query
categories: |
network
-version: 0.98.0
+version: 0.99.0
network: |
Converts record or table into query string applying percent-encoding.
usage: |
diff --git a/commands/docs/url_decode.md b/commands/docs/url_decode.md
index 71c0af4b906..b6be08480d5 100644
--- a/commands/docs/url_decode.md
+++ b/commands/docs/url_decode.md
@@ -2,7 +2,7 @@
title: url decode
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Converts a percent-encoded web safe string to a string.
usage: |
diff --git a/commands/docs/url_encode.md b/commands/docs/url_encode.md
index a81ad15aa01..e74610546d3 100644
--- a/commands/docs/url_encode.md
+++ b/commands/docs/url_encode.md
@@ -2,7 +2,7 @@
title: url encode
categories: |
strings
-version: 0.98.0
+version: 0.99.0
strings: |
Converts a string to a percent encoded web safe string.
usage: |
diff --git a/commands/docs/url_join.md b/commands/docs/url_join.md
index c0871fac9fb..8e75985d653 100644
--- a/commands/docs/url_join.md
+++ b/commands/docs/url_join.md
@@ -2,7 +2,7 @@
title: url join
categories: |
network
-version: 0.98.0
+version: 0.99.0
network: |
Converts a record to url.
usage: |
diff --git a/commands/docs/url_parse.md b/commands/docs/url_parse.md
index 2ff8ebd64ea..ec55106f657 100644
--- a/commands/docs/url_parse.md
+++ b/commands/docs/url_parse.md
@@ -2,7 +2,7 @@
title: url parse
categories: |
network
-version: 0.98.0
+version: 0.99.0
network: |
Parses a url.
usage: |
diff --git a/commands/docs/use.md b/commands/docs/use.md
index a3bce532be2..b138d31bafe 100644
--- a/commands/docs/use.md
+++ b/commands/docs/use.md
@@ -2,7 +2,7 @@
title: use
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Use definitions from a module, making them available in your shell.
usage: |
diff --git a/commands/docs/values.md b/commands/docs/values.md
index 740f6c65662..4b59af820d6 100644
--- a/commands/docs/values.md
+++ b/commands/docs/values.md
@@ -2,7 +2,7 @@
title: values
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Given a record or table, produce a list of its columns' values.
usage: |
diff --git a/commands/docs/version.md b/commands/docs/version.md
index 41e5ea8d3fa..b54ab2d9293 100644
--- a/commands/docs/version.md
+++ b/commands/docs/version.md
@@ -2,7 +2,7 @@
title: version
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Display Nu version, and its build configuration.
usage: |
diff --git a/commands/docs/view.md b/commands/docs/view.md
index 490a1ad6bf5..5fe0a35b781 100644
--- a/commands/docs/view.md
+++ b/commands/docs/view.md
@@ -2,7 +2,7 @@
title: view
categories: |
debug
-version: 0.98.0
+version: 0.99.0
debug: |
Various commands for viewing debug information.
usage: |
diff --git a/commands/docs/view_files.md b/commands/docs/view_files.md
index b28e34b8588..0809fe56dd0 100644
--- a/commands/docs/view_files.md
+++ b/commands/docs/view_files.md
@@ -2,7 +2,7 @@
title: view files
categories: |
debug
-version: 0.98.0
+version: 0.99.0
debug: |
View the files registered in nushell's EngineState memory.
usage: |
diff --git a/commands/docs/view_ir.md b/commands/docs/view_ir.md
index 1a3e03afe1a..c6cf46ff507 100644
--- a/commands/docs/view_ir.md
+++ b/commands/docs/view_ir.md
@@ -2,7 +2,7 @@
title: view ir
categories: |
debug
-version: 0.98.0
+version: 0.99.0
debug: |
View the compiled IR code for a block of code.
usage: |
diff --git a/commands/docs/view_source.md b/commands/docs/view_source.md
index 200ecc83667..28958be3cdd 100644
--- a/commands/docs/view_source.md
+++ b/commands/docs/view_source.md
@@ -2,7 +2,7 @@
title: view source
categories: |
debug
-version: 0.98.0
+version: 0.99.0
debug: |
View a block, module, or a definition.
usage: |
diff --git a/commands/docs/view_span.md b/commands/docs/view_span.md
index d7bc71b8e1c..af16ad6e6a2 100644
--- a/commands/docs/view_span.md
+++ b/commands/docs/view_span.md
@@ -2,7 +2,7 @@
title: view span
categories: |
debug
-version: 0.98.0
+version: 0.99.0
debug: |
View the contents of a span.
usage: |
diff --git a/commands/docs/watch.md b/commands/docs/watch.md
index 82e083ebb7c..eb512acbd82 100644
--- a/commands/docs/watch.md
+++ b/commands/docs/watch.md
@@ -2,7 +2,7 @@
title: watch
categories: |
filesystem
-version: 0.98.0
+version: 0.99.0
filesystem: |
Watch for file changes and execute Nu code when they happen.
usage: |
diff --git a/commands/docs/where.md b/commands/docs/where.md
index 1c8a33f8242..d987cf62c6a 100644
--- a/commands/docs/where.md
+++ b/commands/docs/where.md
@@ -2,7 +2,7 @@
title: where
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Filter values based on a row condition.
usage: |
diff --git a/commands/docs/which.md b/commands/docs/which.md
index 9a75f1b966e..bb725be32bc 100644
--- a/commands/docs/which.md
+++ b/commands/docs/which.md
@@ -2,7 +2,7 @@
title: which
categories: |
system
-version: 0.98.0
+version: 0.99.0
system: |
Finds a program file, alias or custom command.
usage: |
diff --git a/commands/docs/while.md b/commands/docs/while.md
index f0897c756c9..f0196ec387a 100644
--- a/commands/docs/while.md
+++ b/commands/docs/while.md
@@ -2,7 +2,7 @@
title: while
categories: |
core
-version: 0.98.0
+version: 0.99.0
core: |
Conditionally run a block in a loop.
usage: |
diff --git a/commands/docs/whoami.md b/commands/docs/whoami.md
index 96aed15d1c7..e85f1393c79 100644
--- a/commands/docs/whoami.md
+++ b/commands/docs/whoami.md
@@ -2,7 +2,7 @@
title: whoami
categories: |
platform
-version: 0.98.0
+version: 0.99.0
platform: |
Get the current username using uutils/coreutils whoami.
usage: |
diff --git a/commands/docs/window.md b/commands/docs/window.md
index 7994d98a1c4..17e696d9fb2 100644
--- a/commands/docs/window.md
+++ b/commands/docs/window.md
@@ -2,7 +2,7 @@
title: window
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Creates a sliding window of `window_size` that slide by n rows/elements across input.
usage: |
diff --git a/commands/docs/with-env.md b/commands/docs/with-env.md
index b9cbb38979f..031d3378326 100644
--- a/commands/docs/with-env.md
+++ b/commands/docs/with-env.md
@@ -2,7 +2,7 @@
title: with-env
categories: |
env
-version: 0.98.0
+version: 0.99.0
env: |
Runs a block with an environment variable set.
usage: |
diff --git a/commands/docs/wrap.md b/commands/docs/wrap.md
index 62e84dae01f..cb1a02ff742 100644
--- a/commands/docs/wrap.md
+++ b/commands/docs/wrap.md
@@ -2,7 +2,7 @@
title: wrap
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Wrap the value into a column.
usage: |
@@ -34,26 +34,27 @@ usage: |
Wrap a list into a table with a given column name
```nu
-> [1 2 3] | wrap num
-╭───┬─────╮
-│ # │ num │
-├───┼─────┤
-│ 0 │ 1 │
-│ 1 │ 2 │
-│ 2 │ 3 │
-╰───┴─────╯
+> [ Pachisi Mahjong Catan Carcassonne ] | wrap game
+╭───┬─────────────╮
+│ # │ game │
+├───┼─────────────┤
+│ 0 │ Pachisi │
+│ 1 │ Mahjong │
+│ 2 │ Catan │
+│ 3 │ Carcassonne │
+╰───┴─────────────╯
```
Wrap a range into a table with a given column name
```nu
-> 1..3 | wrap num
+> 4..6 | wrap num
╭───┬─────╮
│ # │ num │
├───┼─────┤
-│ 0 │ 1 │
-│ 1 │ 2 │
-│ 2 │ 3 │
+│ 0 │ 4 │
+│ 1 │ 5 │
+│ 2 │ 6 │
╰───┴─────╯
```
diff --git a/commands/docs/zip.md b/commands/docs/zip.md
index 49cc49427fb..5f2d6c30a94 100644
--- a/commands/docs/zip.md
+++ b/commands/docs/zip.md
@@ -2,7 +2,7 @@
title: zip
categories: |
filters
-version: 0.98.0
+version: 0.99.0
filters: |
Combine a stream with the input.
usage: |