如何编辑 .bash_profile 或 .profile 文件。并将以下文本附加到其中,以便每次用户登录时执行这两个命令

如何编辑 .bash_profile 或 .profile 文件。并将以下文本附加到其中,以便每次用户登录时执行这两个命令

在下面的文章中https://www.linuxbabe.com/linux-server/setup-passwordless-ssh-login它说编辑.bash_profile.profile

但我不明白这一行:

然后编辑 .bash_profile 或 .profile 文件。将以下文本附加到其中,以便每次用户登录时都会执行这两个命令。

/usr/bin/keychain $HOME/.ssh/id_rsa
source $HOME/.keychain/$HOSTNAME-sh

我的/root/.profile包含:

# ~/.profile: executed by Bourne-compatible login shells.

if [ “$BASH” ]; then
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
fi

mesg n 2> /dev/null || true

那么在哪里添加代码可以给我修改后的文件吗?

谢谢

相关内容