Command | Description |
---|
group-by | Splits a list or table into groups, and returns a record containing those groups.
|
histogram | Creates a new table with a histogram based on the column name passed in.
|
inc | Increment a value or version. Optionally use the column of a table.
|
join | Join two tables
|
path | Explore and manipulate paths.
|
path basename | Get the final component of a path.
|
path dirname | Get the parent directory of a path.
|
path exists | Check whether a path exists.
|
path expand | Try to expand a path to its absolute form.
|
path join | Join a structured path or a list of path parts.
|
path parse | Convert a path into structured data.
|
path relative-to | Express a path as relative to another path.
|
path split | Split a path into a list based on the system's path separator.
|
path type | Get the type of the object a path refers to (e.g., file, dir, symlink).
|
reduce | Aggregate a list to a single value using an accumulator closure.
|
split-by | Create a new table split.
|
str substring | Get part of a string. Note that the start is included but the end is excluded, and that the first character of a string is index 0.
|
str trim | Trim whitespace or specific character.
|
str upcase | Make text uppercase.
|
transpose | Transposes the table contents so rows become columns and columns become rows.
|
version | Display Nu version, and its build configuration.
|