提示不显示 AIX 的 KSH 的主机名

发布于 2024-09-26 05:37:38 字数 250 浏览 18 评论 0原文

与问题 1171663 类似,AIX 似乎没有可用的 $HOSTNAME 选项。 $hname 和 $hostname 也不存在。除了在 .profile 中执行以下操作之外 -

export HOSTNAME=`hostname`

是否有一种官方方式,AIX 用户在使用时应该能够获得正确的结果:

PS1="${HOSTNAME}:\${PWD##*/} \$ "

Similar to question 1171663, AIX appears to not have the $HOSTNAME option available. $hname and $hostname are also non-existent. Other than doing the following within .profile -

export HOSTNAME=`hostname`

Is there an official manner where AIX users should be capable of getting the proper results when using:

PS1="${HOSTNAME}:\${PWD##*/} \$ "

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

紫瑟鸿黎 2024-10-03 05:37:38

还没有尝试过,但是对于主机名 - 你不能将第一个示例与第二个示例混合起来吗?

PS1="`hostname`:\${PWD##*/} \$ "

但不确定 PWD 位吗?

Haven't tried it, but for the hostname - can't you mix your first example with your second?

PS1="`hostname`:\${PWD##*/} \$ "

Not sure about PWD bit though?

ら栖息 2024-10-03 05:37:38

试试这个:

export HOSTNAME=`uname -n` 

Try this:

export HOSTNAME=`uname -n` 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文