Is there any simple way to get a remaining size of NVRAM?
Surely I may use this way:
nvram show | awk '{print length(), $0 | "sort -n -r"}' | cut -d"=" -f 1 | head -n 20
But I am only interested in size, not other details...
Running this command takes some time, I need something more fast & simple.