Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GRUB 脚本中是否可以进行文件名通配符扩展?
就像是:
for i in directory/*; do echo $i; done
我的目的是让 GRUB 加载位于某些目录中的不同 cfg 文件。
是的,如果您有regexp模块,这是可能的,它似乎使用与 bash 相同的文件名扩展语法。我偶然发现了这一点,但我仍然不确定文档中是否提到了此功能。例子:
regexp
insmod regexp for i in /opt/*; do echo $i; done
我将其输入系统上的 GRUB 2.02 shell 并收到以下输出:
/opt/sublime_text /opt/google