在远程主机上运行自定义配置文件

时间:2014-07-30 15:30:01

标签: bash ssh

我在远程主机上有自定义配置文件脚本。 我想在自动连接主机时获取它。 我无法更改远程主机上的任何内容。 我尝试但没有奏效的事情:

ssh -t myhost '. /local/scratch/scripts/rtc_profile ; bash -l'
ssh -t myhost 'bash -l /local/scratch/scripts/rtc_profile'

我也尝试了以下(有效),但它会跳过所有其他rcfiles:

ssh -t myhost 'bash --rcfile /local/scratch/scripts/rtc_profile '

请帮助:)

1 个答案:

答案 0 :(得分:0)

您可以将以下内容放在~/.bashrc

的末尾
if [ ! -z "$SSH_CONNECTION" ] ; then
    source /local/scratch/scripts/rtc_profile
fi