正如您已经从标题中知道的那样,我想为 grub 配置一个加密密码/etc/grub.conf
。我想使用一个脚本,我将在其中使用grub-md5-crypt
,输入我要加密的密码,然后sed
在/etc/grub.conf
. 第二部分对我来说很好。但是如何处理脚本中的密码提示:
[root@localhost ssh]# grub-md5-crypt
Password:
Retype password:
$1$3L3j7$lkZs92MnlmQkVYiCH9dtJ.
如何自动将加密密码保存在变量中或以某种方式管理它,以便在我的脚本的下一行中我可以sed
这样:
sed -i '/^[# ]*timeout.*/a $hashedpwd/' /etc/grub.conf
请帮忙