DEV Community

Dênis Mendes
Dênis Mendes

Posted on

bash script - Check if environment variable was set.

Here's how you check if a environment variable was set using a bash script:

#!/bin/bash

if [ -z "$AWS_ACCESS_KEY_ID" ]; then
  echo "You need to set AWS credentials! Check out the project documentation."
  exit;
fi
Enter fullscreen mode Exit fullscreen mode

This script is working on macOS Catalina.

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more