Recherche…


Introduction

Avant tout: sachez ce que vous faites! Deuxièmement, alors que vous devriez éviter d'utiliser eval , si son utilisation crée un code plus propre, continuez.

En utilisant Eval

Par exemple, considérez ce qui suit qui définit le contenu de $@ au contenu d'une variable donnée:

a=(1 2 3)
eval set -- "${a[@]}"

Ce code est souvent accompagné de getopt ou de getopts pour définir $@ à la sortie des analyseurs d’option mentionnés ci-dessus. Cependant, vous pouvez également l’utiliser pour créer une fonction pop simple qui peut fonctionner directement sur des variables sans avoir à stocker le résultat. la variable d'origine:

isnum()
{
    # is argument an integer?
    local re='^[0-9]+$'
    if [[ -n $1 ]]; then
        [[ $1 =~ $re ]] && return 0
        return 1
    else
        return 2
    fi
}

isvar()
{
    if isnum "$1"; then
        return 1
    fi
    local arr="$(eval eval -- echo -n "\$$1")"
    if [[ -n ${arr[@]} ]]; then
        return 0
    fi
    return 1
}

pop()
{
    if [[ -z $@ ]]; then
        return 1
    fi

    local var=
    local isvar=0
    local arr=()
    
    if isvar "$1"; then # let's check to see if this is a variable or just a bare array
        var="$1"
        isvar=1
        arr=($(eval eval -- echo -n "\${$1[@]}")) # if it is a var, get its contents
    else
        arr=($@)
    fi
    
    # we need to reverse the contents of $@ so that we can shift
    # the last element into nothingness
    arr=($(awk <<<"${arr[@]}" '{ for (i=NF; i>1; --i) printf("%s ",$i); print $1; }'

    # set $@ to ${arr[@]} so that we can run shift against it.
    eval set -- "${arr[@]}"
    
    shift # remove the last element
    
    # put the array back to its original order
    arr=($(awk <<<"$@" '{ for (i=NF; i>1; --i) printf("%s ",$i); print $1; }'
    
    # echo the contents for the benefit of users and for bare arrays
    echo "${arr[@]}"

    if ((isvar)); then
        # set the contents of the original var to the new modified array
        eval -- "$var=(${arr[@]})" 
    fi
}

Utiliser Eval avec Getopt

Même si eval n'est peut-être pas nécessaire pour une fonction de type pop , elle est toutefois requise lorsque vous utilisez getopt :

Considérons la fonction suivante qui accepte l'option -h :

f()
{
    local __me__="${FUNCNAME[0]}"
    local argv="$(getopt -o 'h' -n $__me__ -- "$@")"

    eval set -- "$argv"
    
    while :; do
        case "$1" in
            -h)
              echo "LOLOLOLOL"
              return 0
              ;;
            --)
              shift
              break
              ;;
    done
    
    echo "$@"
}

Sans eval set -- "$argv" génère -h -- au lieu de celui désiré (-h --) et entre ensuite dans une boucle infinie car -h -- ne correspond pas -- ou -h .



Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow