android_mt6572_jiabo/external/bash/tests/nameref2.sub
2025-09-05 16:56:03 +08:00

7 lines
132 B
Text

# test readonly nameref variables
# ksh93 allows this but not typeset -rn ref=foo?
typeset -n ref=foo
readonly ref
foo=4
echo $ref