mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 15:53:34 +02:00
nvram: add page (#6617)
This commit is contained in:
parent
cde6462e4d
commit
ff7516b063
1 changed files with 28 additions and 0 deletions
28
pages/osx/nvram.md
Normal file
28
pages/osx/nvram.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# nvram
|
||||
|
||||
> Manipulate firmware variables.
|
||||
> More information: <https://ss64.com/osx/nvram.html>.
|
||||
|
||||
- [p]rint all the variables stored in the NVRAM:
|
||||
|
||||
`nvram -p`
|
||||
|
||||
- [p]rint all the variables stored in the NVRAM using [x]ML format:
|
||||
|
||||
`nvram -xp`
|
||||
|
||||
- Modify the value of a firmware variable:
|
||||
|
||||
`sudo nvram {{name}}="{{value}}"`
|
||||
|
||||
- [d]elete a firmware variable:
|
||||
|
||||
`sudo nvram -d {{name}}`
|
||||
|
||||
- [c]lear all the firmware variables:
|
||||
|
||||
`sudo nvram -c`
|
||||
|
||||
- Set a firmware variable from a specific [x]ML [f]ile:
|
||||
|
||||
`sudo nvram -xf {{path/to/file.xml}}`
|
Loading…
Add table
Reference in a new issue