下記シェルスクリプト(/etc/grub.d/41_custom)で変数${config_directory}の前に\が付与されていますが、何故必要なのでしょうか? 変数として展開されなくなってしまうので不要だと思います。)
初歩的な内容ですが、調べても分からなかったので質問させてください。。
bash
1#!/bin/sh 2cat <<EOF 3if [ -f ${config_directory}/custom.cfg ]; then 4 source ${config_directory}/custom.cfg 5elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then 6 source $prefix/custom.cfg; 7fi 8EOF
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/30 09:44