Last active
July 14, 2020 00:50
-
-
Save lunhg/4ed78f23d97cc4711b4abd61e1803a5d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# @about: Este script é um exemplo didático para observar como é carregada uma variável de ambiente. | |
# @usage: Existe o uso correto e incorreto. Para fins didáticos, use primeiro o incorreto e depois o correto | |
# @incorrect_usage: | |
# $> ./env_var_script_visibility.sh | |
# @correct_usage: | |
# $> TESTE=valor | |
# $> export TESTE | |
# $> ./env_var_script_visility.sh | |
echo "Este script irá:" | |
echo "" | |
echo " - ler uma variável de ambiente chamada TESTE" | |
echo " - retornar para a saída padrão o valor correspondente" | |
echo "" | |
echo "O valor da variável TESTE é: $TESTE" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment