2023-02-23 22:09:25 +00:00
|
|
|
-- Returns a list of file information from /dev (non-hidden only)
|
|
|
|
--
|
|
|
|
-- tags: postmortem
|
|
|
|
-- platform: posix
|
2023-02-24 02:24:52 +00:00
|
|
|
SELECT
|
|
|
|
file.*,
|
|
|
|
magic.data
|
|
|
|
FROM
|
|
|
|
file
|
|
|
|
JOIN magic ON file.path = magic.path
|
|
|
|
WHERE
|
|
|
|
file.path LIKE "/dev/%%";
|