shell 别名是否符合 POSIX 标准?
我正在编写一个实用程序,可以让您持久地设置 shell 别名。
我脑子里认为 unix shell 别名是 POSIX 兼容的,但我不记得我在哪里听到这个,而且我的 google fu 也没有给出任何明确的答案。
我的大部分经验都是使用 zsh 和 bash。
是否可以安全地假设,如果我以 bash 和 zsh 指定的格式编写别名,我将能够将此格式移植到其他 shell?
I am writing a utility which lets you set shell aliases persistently.
I have it in my head that unix shell aliases are POSIX compliant, but I can't remember where I heard this and my google fu has not yielded any definitive answer.
Most of my experience is with zsh and bash.
Is it safe to assume that if I write aliases in the format of specified by both bash and zsh, that I'll be able to port this format over to other shells?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
别名
(和unalias< /code>) 确实在 POSIX 中。
另请参阅别名替换和别名 了解它们应该如何实现。
alias
(andunalias
) are indeed in POSIX.See also alias substitution and alias names for how they are supposed to be implemented.