What does this statement do?

Hi,

What does this line do in bash?

MAILDROP_GROUP="@@";

Is this just assigning a string? or does it have special meaning?
Thanks in advance.

Wilsonee

why dont you try it in your system ?

 
bash-3.2$ MAILDROP_GROUP="@@";
bash-3.2$ echo $MAILDROP_GROUP
@@

1 Like
 MAILDROP_GROUP="@@";
$ echo $MAILDROP_GROUP
@@
1 Like

It is just assigning a string. You could even leave out the quotes:

MAILDROP_GROUP=@@
1 Like