You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 11, 2020. It is now read-only.
The following short script shows that foo is considered read-only, which it is not, as the -r is to read, not to a declare which indeed would make the variable read-only:
#!/usr/bin/env bashread -r foo
foo=bar
The text was updated successfully, but these errors were encountered:
The following short script shows that
foo
is considered read-only, which it is not, as the-r
is toread
, not to adeclare
which indeed would make the variable read-only:The text was updated successfully, but these errors were encountered: