Se o usuário remoto estiver usando bash
, então $HOME/.bashrc
deve ser carregado, mesmo em shells não interativos. Você pode colocar suas opções lá.
por exemplo,
$ head -1 .bashrc
echo BASHRC loaded
$ ssh localhost echo hello
sweh@localhost's password:
BASHRC loaded
hello
$