12 lines
328 B
Bash
12 lines
328 B
Bash
#!/bin/bash
|
|
|
|
##########################################################################
|
|
# Shellscript : Reset NVRAM
|
|
# Autor : Andreas Vogel, macenterprise gmbh, 08.07.2019
|
|
##########################################################################
|
|
|
|
# Clear NVRAM
|
|
sudo nvram -c
|
|
|
|
# restart the Computer now
|
|
sudo shutdown -r now |