Mengatur nilai variabel default dalam bash

FOO="${VARIABLE:=default}"  # If variable not set or null, set it to default.
Gifted Gorilla