linux下可以为用户设置环境变量吗?
我有 Windows Box,还有 Linux Box,我在其中有我的帐户 /home/my_username
。每次连接到 Linux 时,我都会在 Windows 中使用 ssh 客户端(cygwin ssh.exe)。但每次登录后我都会运行一些脚本来设置一些环境变量。所以问题是我可以为我的用户设置环境变量(不更改其他用户)以不运行每次脚本吗?
I have windows box, also there is linux box where I have my account /home/my_username
. Every time to connect to linux I'm using ssh client in windows (cygwin ssh.exe). But every time after logging in I'm running some script to set some environment variables. So the question is following can I set environment variables for my user (not changing others) to not run each time script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常你在 shell 中设置它..取决于你有什么:bash,sh,...例如在 /home/user/.bashrc 中添加你的东西,它将在登录后执行
usually you set this in your shell.. depending what you have: bash, sh, ... add your stuff in /home/user/.bashrc for example and it will be executed after login
假设linux shell是bash,请参考http:// /www.gnu.org/software/bash/manual/bashref.html#Bash-Startup-Files。
对于其他 shell,文件会有所不同。联机帮助页还应该告诉您哪个文件需要修改。
人<壳>
Assuming the linux shell is bash, please refer to http://www.gnu.org/software/bash/manual/bashref.html#Bash-Startup-Files.
For other shells, the files will vary. The manpage also ought to tell you which file needs to be modified.
man <shell>