if test -f ($device)/bootmgr -a -f ($device)/boot/BCD; then 可以显示菜单条,
改成 if test -f ($device)/bootmgr -a -f ($device)/boot/bcd; then 则没有显示菜单条。
系统在NTFS分区
for dev in (*); do
test -e ${dev};
if test "$?" = "1"; then
continue;
fi;
regexp --set=device '\((.*)\)' $dev;
if test -f ($device)/EFI/Microsoft/Boot/bootmgfw.efi -a -f ($device)/EFI/Microsoft/Boot/BCD;then
... ...