tldr/pages/osx/system_profiler.md

17 lines
489 B
Markdown
Raw Normal View History

# system_profiler
> Report system hardware and software configuration.
2021-11-14 19:45:59 +00:00
> More information: <https://ss64.com/osx/system_profiler.html>.
- Display a full system profiler report which can be opened by System Profiler.app:
`system_profiler -xml > MyReport.spx`
- Display a hardware overview (Model, CPU, Memory, Serial, etc):
`system_profiler SPHardwareDataType`
- Print the system serial number:
2022-02-14 11:21:43 +00:00
`system_profiler SPHardwareDataType|grep "Serial Number (system)" | awk '{ print $4 }'`