forked from extern/nushell
25 lines
2.1 KiB
Markdown
25 lines
2.1 KiB
Markdown
|
# ps
|
||
|
|
||
|
This command shows information about system processes.
|
||
|
|
||
|
Syntax: `ps`
|
||
|
|
||
|
## Example
|
||
|
|
||
|
```shell
|
||
|
> ps
|
||
|
...
|
||
|
━━━━┯━━━━━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┯━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━
|
||
|
# │ pid │ name │ status │ cpu
|
||
|
────┼───────┼────────────────────────────────────────────────────────────────────┼─────────┼───────────────────
|
||
|
50 │ 10184 │ firefox.exe │ Running │ 0.000000000000000
|
||
|
51 │ 11584 │ WindowsTerminal.exe │ Running │ 0.000000000000000
|
||
|
52 │ 11052 │ conhost.exe │ Running │ 0.000000000000000
|
||
|
53 │ 7076 │ nu.exe │ Running │ 0.000000000000000
|
||
|
...
|
||
|
66 │ 3000 │ Code.exe │ Running │ 0.000000000000000
|
||
|
67 │ 5388 │ conhost.exe │ Running │ 0.000000000000000
|
||
|
68 │ 6268 │ firefox.exe │ Running │ 0.000000000000000
|
||
|
69 │ 8972 │ nu_plugin_ps.exe │ Running │ 58.00986000000000
|
||
|
━━━━┷━━━━━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┷━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━
|
||
|
```
|