Skip to content

Instantly share code, notes, and snippets.

@scudelletti
Created April 30, 2013 14:06
Show Gist options
  • Save scudelletti/5488942 to your computer and use it in GitHub Desktop.
Save scudelletti/5488942 to your computer and use it in GitHub Desktop.
Simple Function with Condition(IF) in Shell Script
$VAR1=BlaBlaBla
$VAR1=PqPqPqPq
function export_ambient_variable_for() {
if [[ $1 = 'prod' ]]; then
echo 'Exporting ambient variables for Prod environment'
export ZZZZ=$VAR1
else
echo 'Exporting ambient variables for Dev environment'
export ZZZZ=$VAR2
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment