How to make variables as read only in bash shell linux ?
Variables in Linux can be made read only using the keyword “readonly”. For example, if we want a variable to contain a value say 10 and must not be changed...
Variables in Linux can be made read only using the keyword “readonly”. For example, if we want a variable to contain a value say 10 and must not be changed...
We all know that a variable is defined by simply assigning a value to it. However bash shell also provides a feature to unset it, in order to free it...