Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How set multiple env variables for a bash command

Tags:

linux

bash

cygwin

I am supposed to set the EC2_HOME and JAVA_HOME variables before running a command (ec2-describe-regions)

How do I do that in one go?

like image 942
SamLosAngeles Avatar asked Oct 04 '14 04:10

SamLosAngeles


1 Answers

You can one-time set vars for a single command by putting them on the command line before the command:

$ EC2_HOME=/path/to/dir JAVA_HOME=/other/path ec2-describe-regions 

Alternately, you can export them in the environment, in which case they'll be set for all future commands:

$ export EC2_HOME=/path/to/dir $ export JAVA_HOME=/other/path $ ec2-describe-regions 
like image 125
Chris Dodd Avatar answered Oct 16 '22 18:10

Chris Dodd