This commit is contained in:
2026-07-12 08:16:17 +03:30
commit 72be1234e1
2027 changed files with 221388 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
#!/bin/zsh
grub_screen() {
clear
echo -e "\n\n\t GNU GRUB 2.06"
echo -e "\n"
echo -e "\t Minimal BASH-like line editing is supported. For the first word, TAB"
echo -e "\t lists possible command completions. Anywhere else TAB lists possible"
echo -e "\t device or file completions."
echo -e "\n"
}
grub_screen
# Fake GRUB prompt
while true; do
echo -ne " grub> "
read -r command
case $command in
exit|quit)
clear
break
;;
*)
echo -e "\t Unknown command. Press a key to continue..."
read -r dummy
;;
esac
done