7 lines
123 B
Bash
7 lines
123 B
Bash
|
#!/bin/sh
|
||
|
if grub-file --is-x86-multiboot kernel; then
|
||
|
echo multiboot confirmed
|
||
|
else
|
||
|
echo the file is not multiboot
|
||
|
fi
|