You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh |
|
|
|
if [ "$1" = "--version" ]; then |
|
echo This version of nvsetenv is just a wrapper to invoke nvram |
|
exit 0 |
|
fi |
|
if [ -z "$1" ]; then |
|
nvram --print-config |
|
elif [ -z "$2" ]; then |
|
nvram --print-config="$1" |
|
else |
|
nvram --update-config "$1"="$2" |
|
fi |
|
exit $?
|
|
|