Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions book/nushell_map.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

The idea behind this table is to help you understand how Nu builtins and plugins relate to other known shells and domain specific languages. We've tried to produce a map of relevant Nu commands and what their equivalents are in other languages. Contributions are welcome.

Note: This table assumes Nu 0.94 or later.


| Nushell | SQL | .Net LINQ (C#) | PowerShell (without external modules) | Bash |
| ---------------------------------------------------------- | ----------------------------- | ---------------------------------------------------- | ------------------------------------------ | ----------------------------------------------- |
| [`alias`](/commands/docs/alias.md) | | | `alias` | `alias` |
Expand Down Expand Up @@ -53,7 +50,6 @@ Note: This table assumes Nu 0.94 or later.
| [`skip until`](/commands/docs/skip_until.md) | | `SkipWhile` | | |
| [`skip while`](/commands/docs/skip_while.md) | | `SkipWhile` | | |
| [`sort-by`](/commands/docs/sort-by.md) | `order by` | `OrderBy`, `OrderByDescending`, `ThenBy`, `ThenByDescending` | `Sort-Object`, `sort` | `sort` |
| [`split-by`](/commands/docs/split-by.md) | | `Split` | `Split` | |
| [`str`](/commands/docs/str.md) | String functions | `String` class | `String` class | |
| [`str join`](/commands/docs/str_join.md) | `concat_ws` | `Join` | `Join-String` | |
| [`str trim`](/commands/docs/str_trim.md) | `rtrim`, `ltrim` | `Trim`, `TrimStart`, `TrimEnd` | `Trim` | |
Expand Down
Loading