Skip to content

Instantly share code, notes, and snippets.

View julp's full-sized avatar

julp julp

View GitHub Profile
@julp
julp / test.sh
Created August 13, 2025 13:25
FreeBSD dump EFI content
#!/bin/sh
(
for guid in `efivar -l`; do
echo "========== ${guid} =========="
efivar -p "${guid}" -b | hexdump -C
echo ""
done
) > /tmp/efi.txt