我在远程主机上有自定义配置文件脚本。 我想在自动连接主机时获取它。 我无法更改远程主机上的任何内容。 我尝试但没有奏效的事情:
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 '
请帮助:)
答案 0 :(得分:0)
您可以将以下内容放在~/.bashrc
:
if [ ! -z "$SSH_CONNECTION" ] ; then
source /local/scratch/scripts/rtc_profile
fi