如何定义 Fish 中的常数?
In sh:
readonly constant=value
如何在fish中做到这一点?
In sh:
readonly constant=value
How to do it in fish?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
In sh:
readonly constant=value
如何在fish中做到这一点?
In sh:
readonly constant=value
How to do it in fish?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您不能在 Fish 中定义只读变量(常量)。只有某些内置环境变量是只读的。
这些只读变量是:
status
、history
、version
、_
、LINES
>、COLUMNS
和PWD
。只有 root 可以修改HOME
和USER
。You cannot define read-only variables (constants) in fish. Only certain built-in environmental variables are read-only.
These read-only variables are:
status
,history
,version
,_
,LINES
,COLUMNS
andPWD
. Only root can modifyHOME
andUSER
.