logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Readonly - Control Shell Variables | Online Free DevTools by Hexmos

Control shell variables with Readonly. Set and manage read-only shell variables to protect critical configurations. Free online tool, no registration required.

readonly

Set read-only shell variables. More information: https://www.gnu.org/software/bash/manual/bash.html#index-readonly.

  • Set a read-only variable:

readonly {{variable_name}}={{value}}

  • Mark a variable as read-only:

readonly {{existing_variable}}

  • [p]rint the names and values of all read-only variables to stdout:

readonly -p

See Also