使环境变量永久化
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其添加到您的
~/.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)