Home
/
SSH Tutorials
/
Advanced Bash Environment Variables

Advanced Bash Environment Variables

BASH is the shell installed on all SiteGround servers by default. It is a very powerful shell language and is an invaluable tool when working with Linux systems.

Under bash and almost all other shells, the user can define environment variables, which are stored internally as ASCII strings. One of the handiest things about environment variables is that they are a standard part of the UNIX process model, which means that once an environment variable is set, it can be read by any subsequent process we run.

Let’s try this and set an environment variable called $name with value “My Full Name”:

name="My Full Name"
echo $name

And then export it:

export name

The variable $name is now in the environment list of variables and can be accessed by other processes. For example, it can be used by a PHP script:

<?php echo $_SERVER['name'];?>

When running on the command line (using: php script.php) you will see that PHP will now print “My Full Name”.

This is very useful when you need to troubleshoot certain php (and not only) scripts which requires input from the visitor, for example via a form.

Without using environment variables however it will not be possible to be tested on a command line.

Share This Article