GNU/Linux >> Tutoriels Linux >  >> Linux

Comment sourcer une variable spécifique

Il est possible de délimiter des variables à l'aide de fonctions. Exemple :

## Provider.sh
# Global vars
declare -A map

# Wrap the rest of Provider.sh in a function

provider() {

    # Local vars only available in this function
    declare a=hello b=world c d


    # Global vars are available
    map[hello]=world

}

provider "[email protected]"    # Execute function, pass on any positional parameters

# Remove function
unset -f provider
$ cat Consumer.sh
. ./Provider.sh
echo "${map[hello]}"
echo "$a"
$ bash -x Consumer.sh
+ . ./Provider.sh
++ declare -A map
++ provider
++ declare a=hello b=world c d
++ map[hello]=world
++ unset -f provider
+ echo world
world
+ echo ''


Vous pouvez utiliser une fonction et rendre les variables locales ou globales :

#!/bin/bash

foo() {
  declare -gA MAP # make global
  local A=hello # make local
  local B=world # make local
  MAP[hello]=world
}

foo

Ensuite :

#!/bin/bash
source ./Provider.sh
[[ -z "$A" ]] && echo "Variable A not defined"
[[ -z "$B" ]] && echo "Variable B not defined"
echo ${MAP[hello]}

Sortie :

Variable A not defined
Variable B not defined
world

Linux
  1. Comment exécuter une commande stockée dans une variable ?

  2. Comment différer l'expansion variable ?

  3. Comment définir la variable $Path sous Linux

  4. Comment RSYNC un seul fichier?

  5. Comment router uniquement un sous-réseau spécifique (source IP) vers une interface particulière ?

Comment installer Maven sur Windows

Comment installer un logiciel à partir de la source sous Linux

Comment définir une variable d'environnement dans Bash

Comment envoyer un ping à un numéro de port spécifique

Qu'est-ce que BusyBox sous Linux ? Comment l'utiliser?

Comment ajouter une source de données à Redash