Home Explore Blog CI



nushell

6th chunk of `book/nushell_map.md`
9b0a5ca6614e63036fc0a61dd9926c7c9bd1e21ce7f01e040000000100000e5b
| [`sys mem`](/commands/docs/sys_mem.md)                     |                               |                                                      | `Get-ComputerInfo`                         | `free`                                          |
| [`table`](/commands/docs/table.md)                         |                               |                                                      | `Format-Table`, `ft`, `Format-List`, `fl`  |                                                 |
| [`take`](/commands/docs/take.md)                           | `top`, `limit`                | `Take`                                               | `Select-Object -First`                     | `head`                                          |
| [`take until`](/commands/docs/take_until.md)               |                               | `TakeWhile`                                          |                                            |                                                 |
| [`take while`](/commands/docs/take_while.md)               |                               | `TakeWhile`                                          |                                            |                                                 |
| [`timeit`](/commands/docs/timeit.md)                       |                               |                                                      | `Measure-Command`                          | `time`                                          |
| [`to`](/commands/docs/to.md)                               |                               |                                                      | `Export`/`ConvertTo-{Csv,Xml,Html,Json}`   |                                                 |
| [`touch`](/commands/docs/touch.md)                         |                               |                                                      | `Set-Content`                              | `touch`                                         |
| [`uniq`](/commands/docs/uniq.md)                           | `distinct`                    | `Distinct`                                           | `Get-Unique`, `gu`                         | `uniq`                                          |
| [`update`](/commands/docs/update.md)                       |                               |                                                      | `ForEach-Object`                           |                                                 |
| [`upsert`](/commands/docs/upsert.md)                       | `As`                          |                                                      | `ForEach-Object`                           |                                                 |
| [`version`](/commands/docs/version.md)                     | `select @@version`            |                                                      | `$PSVersionTable`                          |                                                 |
| `$env.FOO = "bar"`<br />[`with-env`](/commands/docs/with-env.md) |                         |                                                      | `$env:FOO = 'bar'`                         | `export FOO "bar"`                              |
| [`where`](/commands/docs/where.md)                         | `where`                       | `Where`                                              | `Where-Object`, `where`, `?` operator      |                                                 |
| [`which`](/commands/docs/which.md)                         |                               |                                                      | `Get-Command`                              | `which`                                         |

Title: Nu Command Equivalents in Other Languages (Continued)
Summary
This section continues listing Nu shell commands and their equivalents in SQL, .Net LINQ (C#), PowerShell, and Bash. Commands covered include system memory (`sys mem`), table formatting (`table`), sequence selection (`take`, `take until`, `take while`), benchmarking (`timeit`), data conversion (`to`), file creation (`touch`), duplicate removal (`uniq`), record modification (`update`, `upsert`), version information (`version`), environment variable manipulation (`$env.FOO = "bar"`, `with-env`), conditional filtering (`where`), and command location (`which`).