Shell读取ini文件

参考stackoverflow的例子,改了一个出来:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
while IFS='= ' read var val
do
if [[ $var == \[*] ]]
then
section=$(echo $var | sed 's/^\[\(.*\)\]$/\1/')
elif [[ $val ]]
then
if [ -z $section ];then
declare "${var}=$val"
else
declare "${section}.${var}=$val"
fi
fi
done < config.ini
while IFS='= ' read var val do if [[ $var == \[*] ]] then section=$(echo $var | sed 's/^\[\(.*\)\]$/\1/') elif [[ $val ]] then if [ -z $section ];then declare "${var}=$val" else declare "${section}.${var}=$val" fi fi done < config.ini
while IFS='= ' read var val
do
    if [[ $var == \[*] ]]
    then
        section=$(echo $var | sed 's/^\[\(.*\)\]$/\1/')
    elif [[ $val ]]
    then
        if [ -z $section ];then
            declare "${var}=$val"
        else
            declare "${section}.${var}=$val"
        fi  
    fi  
done < config.ini

使用的时候:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
${section.key}
${section.key}
${section.key}

就可以读到变量啦。

Leave a Reply

Your email address will not be published. Required fields are marked *