iTerm 2 名称长度

发布于 2024-11-15 06:19:40 字数 169 浏览 1 评论 0原文

我是 OSX 新手,已经下载了 iTerm 2,但我的命令行名称过长。

它看起来像 my-name-Macbook-pro:~ myname$

并且我希望它看起来像 ~myname$

有没有一种简单的方法来缩短这个名称,我已经尽可能多地用谷歌搜索,但找不到一个简单的解决方案。

I am new to OSX and have downloaded iTerm 2 and my name for the command line is superfluously long.

It looks like my-name-Macbook-pro:~ myname$

and I want it to look like ~myname$

Is there an easy way to shorten this name, I have googled as much as I can but can't find an easy solution.

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

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

发布评论

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

评论(1

爱的故事 2024-11-22 06:19:40

这与 OSX 或 iterm2 无关。 OSX 默认使用 bash shell,您只需正确设置提示符即可。

提示由变量PS1设置。请参阅这篇文章了解如何设置bash 提示符。为了实现您想要的效果,您需要 \w\u 字段。所以类似的东西

PS1=\\w:\\u\$

会给你~:myname$。尝试一下其他选项,看看你最喜欢哪个。找到所需的设置后,请将其输入到 .bashrc 文件中,以便每次登录时都会加载它。另请参阅此问题,了解可放入 .bashrc 中的精彩内容。

This has nothing to do with OSX or with iterm2. OSX by default uses the bash shell and you just need to set the prompt correctly.

The prompt is set by the variable PS1. See this article on how to set your bash prompt. To achieve what you want, you need the \w and the \u fields. So something like

PS1=\\w:\\u\$

will give you ~:myname$. Play around with the other options and see what you like best. Once you find a setting that you like, enter it in your .bashrc file so that it is loaded every time you login. Also see this question for cool stuff to put in your .bashrc.

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