Forrest logo
back to the nvram tool

nvram:tldr:358ec

nvram: [p]rint all the variables stored in the NVRAM using [x]ML format.
$ nvram -xp
try on your machine

The command "nvram -xp" is used to display the non-volatile RAM (NVRAM) variables and their values in a human-readable format on macOS or Mac OS X systems.

Here's a breakdown of the command:

  • "nvram" stands for non-volatile random-access memory. It is a memory technology that retains its data even when the power is turned off. NVRAM is used to store various system settings and configurations on macOS devices.

  • "-xp" are command-line options or arguments passed to the nvram command. Let's break down each option:

    • "-x" is used to display the variables in XML format. This option indicates that the output of the command should be in XML format, making it easier to parse and process programmatically.
    • "-p" is used to print or display the values of the NVRAM variables. It instructs the command to show the variables along with their respective values.

By running the "nvram -xp" command in the Terminal, you can see a list of NVRAM variables and their corresponding values on your macOS system.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the nvram tool