mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 02:13:47 +01:00
c0a1d18e3d
* feat: update #4455, regenerate commands' docs * chore: update make_docs script
29 lines
302 B
Markdown
29 lines
302 B
Markdown
---
|
|
title: sys
|
|
layout: command
|
|
version: 0.59.0
|
|
---
|
|
|
|
View information about the system.
|
|
|
|
## Signature
|
|
|
|
```> sys ```
|
|
|
|
## Examples
|
|
|
|
Show info about the system
|
|
```shell
|
|
> sys
|
|
```
|
|
|
|
Show the os system name with get
|
|
```shell
|
|
> (sys).host | get name
|
|
```
|
|
|
|
Show the os system name
|
|
```shell
|
|
> (sys).host.name
|
|
```
|