mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-30 12:41:37 +00:00
22 lines
369 B
Plaintext
22 lines
369 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# cpuid
|
|
|
|
> Display detailed information about all CPUs.
|
|
> More information: <http://etallen.com/cpuid.html>.
|
|
|
|
- Display information for all CPUs:
|
|
|
|
`cpuid`
|
|
|
|
- Display information only for the current CPU:
|
|
|
|
`cpuid -1`
|
|
|
|
- Display raw hex information with no decoding:
|
|
|
|
`cpuid -r`
|