2019-10-06 17:20:48 +02:00
|
|
|
# sys
|
|
|
|
|
2020-03-12 02:01:55 +01:00
|
|
|
This command gives information about the system nu is running on.
|
2019-10-06 17:20:48 +02:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
```shell
|
|
|
|
> sys
|
|
|
|
━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━
|
|
|
|
host │ cpu │ disks │ mem │ net │ battery
|
|
|
|
────────────────┼────────────────┼─────────────────┼────────────────┼──────────────────┼────────────────
|
|
|
|
[table: 1 row] │ [table: 1 row] │ [table: 3 rows] │ [table: 1 row] │ [table: 18 rows] │ [table: 1 row]
|
|
|
|
━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━
|
|
|
|
> sys | get host
|
|
|
|
━━━━━━━━┯━━━━━━━━━┯━━━━━━━━━━━━━━┯━━━━━━━━┯━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━
|
2020-03-12 02:01:55 +01:00
|
|
|
name │ release │ hostname │ arch │ uptime │ sessions
|
2019-10-06 17:20:48 +02:00
|
|
|
────────┼─────────┼──────────────┼────────┼────────────────┼──────────────────
|
|
|
|
Darwin │ 18.7.0 │ C02Y437GJGH6 │ x86_64 │ [table: 1 row] │ [table: 17 rows]
|
|
|
|
━━━━━━━━┷━━━━━━━━━┷━━━━━━━━━━━━━━┷━━━━━━━━┷━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━
|
|
|
|
> sys | get cpu
|
|
|
|
━━━━━━━┯━━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━
|
|
|
|
cores │ current ghz │ min ghz │ max ghz
|
|
|
|
───────┼───────────────────┼───────────────────┼───────────────────
|
|
|
|
12 │ 2.600000000000000 │ 2.600000000000000 │ 2.600000000000000
|
|
|
|
━━━━━━━┷━━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━
|
|
|
|
> sys | get mem
|
|
|
|
━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━
|
|
|
|
total │ free │ swap total │ swap free
|
|
|
|
─────────┼──────────┼────────────┼───────────
|
|
|
|
34.4 GB │ 545.0 MB │ 2.1 GB │ 723.0 MB
|
|
|
|
━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━
|
2020-03-12 02:01:55 +01:00
|
|
|
```
|