cpufetch(1)
Fetch and display detailed CPU information including model, architecture, and performance details.
Synopsis
cpufetch [OPTION]...Description
cpufetch is a command-line utility that retrieves and displays comprehensive CPU information in a visually organized format. It shows processor model, number of cores/threads, clock speed, cache sizes, and other hardware details.
The tool automatically detects CPU features and architecture specifics, making it useful for system diagnostics, performance profiling, and hardware verification. It supports both x86/x64 and ARM processors.
Common options
| Flag | What it does |
|---|---|
-h, --help | Display help message and exit |
-v, --verbose | Show additional detailed CPU information and flags |
--color | Force colored output (enabled by default when terminal supports it) |
--no-color | Disable colored output |
--raw | Output raw CPU information in machine-readable format |
--version | Show version information and exit |
Examples
Display basic CPU information with default formatting and colors
cpufetchShow detailed CPU information including supported instruction sets and flags
cpufetch --verboseDisplay CPU information without color formatting for plain text output
cpufetch --no-colorOutput CPU information in raw format suitable for parsing by scripts
cpufetch --rawDisplay only the first 20 lines of CPU information
cpufetch | head -20Save CPU information to a file for later reference or sharing
cpufetch > cpu_info.txt