如何在Bash中取消设置只读变量?
原文链接:https://www.f2er.com/bash/390113.html$ readonly PI=3.14 $ unset PI bash: PI: readonly variable
或者是不可能的?
$ readonly PI=3.14 $ unset PI bash: PI: readonly variable
或者是不可能的?