1
0
Fork 0
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:
Axel Navarro 2021-10-04 05:22:43 -03:00 committed by GitHub
parent cde6462e4d
commit ff7516b063
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

28
pages/osx/nvram.md Normal file
View 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}}`