#!/usr/bin/env bash

one='hello'
two=''

echo "${one:-foo}"
echo "${two:-bar}"
