How to check whether an environment variable is read only or R+W on linux system?
As an example BASH_VERSINFO is readonly. do i need to check manual? Any other option?
|
How to check whether an environment variable is read only or R+W on linux system? As an example BASH_VERSINFO is readonly. do i need to check manual? Any other option?
| ||||
|
feedback
|
|
The command that makes variables read-only is If you call it without arguments, it prints all readonly variables. Check if yours is in there. For me, the following command reduces output to the variable names, one per line:
| |||
|
feedback
|