More significance of “ “
While testing conditions it would be better to use double quotes as follows
If [ “$VAR” = “value” ]
So that if a blank value comes as the value of the variable VAR, it will not generate any error.

While testing conditions it would be better to use double quotes as follows
If [ “$VAR” = “value” ]
So that if a blank value comes as the value of the variable VAR, it will not generate any error.
Leave a Reply