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?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The command that makes variables read-only is readonly, e.g. readonly FOO=bar.

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:

readonly | cut -d= -f1 | cut -d' ' -f3
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.