Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试修改我的 SSH 服务器的 PATH 变量,例如非交互式 shell 命令ssh myserver.com 'echo $PATH'返回所需的路径。我尝试修改 ~/.bashrc 和 ~/.profile 文件,但它们仅在我以交互方式登录服务器时修改 PATH ,即ssh myserver.com.
ssh myserver.com 'echo $PATH'
ssh myserver.com
我可以在 RHEL5 中更改此行为吗?
~/.bash_profile是您要放置这些变量的位置。我不相信 bash 使用 ~/.profile (我相信它被 csh 和 tcsh 使用)