8 lines
118 B
MySQL
8 lines
118 B
MySQL
|
-- Retrieves entries from the macOS nvram database
|
||
|
--
|
||
|
-- tags: postmortem
|
||
|
-- platform: darwin
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
nvram;
|