Variable name must begin with an Alphanumeric character or underscore character (_), followed by one or more
Alphanumeric characters. That means that the variable
name cannot contain any special characters other than underscore.
give the variable a name; then assign a value to it.
For example:
Code:
gary@abitbox:~$ export abc=abc.def
gary@abitbox:~$ echo $abc
abc.def
gary@abitbox:~$
HTH
Gary