使环境变量永久化

发布于 2024-10-26 04:40:41 字数 258 浏览 0 评论 0原文

shell> export HISTTIMEFORMAT='%F %T '
shell> history | tail -n 2
 1006  2010-01-16 00:55:47  export HISTTIMEFORMAT='%F %T '
 1007  2010-01-16 00:55:49 history | tail -n 2

只要设置了环境变量,这就会持续存在,因此如果我注销,您将需要再次设置它。我怎样才能使这个永久化?

shell> export HISTTIMEFORMAT='%F %T '
shell> history | tail -n 2
 1006  2010-01-16 00:55:47  export HISTTIMEFORMAT='%F %T '
 1007  2010-01-16 00:55:49 history | tail -n 2

This will last as long as environment variable is set, so if I log out you will need to set it again. How do I make this permanent?

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

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

发布评论

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

评论(1

゛时过境迁 2024-11-02 04:40:44

将其添加到您的 ~/.bashrc~/.bash_profile - 其中之一将在 bash 启动时被读取。 .bash_profile 在您登录时读取,.bashrc 在您创建新的交互式非登录 shell 时读取(例如从 X 打开终端窗口)

Add it to your ~/.bashrc and ~/.bash_profile - one of these will be read when bash starts. .bash_profile is read when you login, .bashrc is read when you create a new interactive non-login shell (such as opening a terminal window from X)

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