Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 171 Bytes

File metadata and controls

9 lines (7 loc) · 171 Bytes

Bash Check if env variable present

Back

if [[ ! -z "$ENV_VAR" ]]; then
    echo "Env var ENV_VAR is present with value $ENV_VAR"
fi