>>659
君こそ bash のことをあまり知らないようだね。
--rcfile オプションは、interactive shell の場合、動作しないんだよ。

ssh remote-machine command arg
の代わりに
ssh remote-machine bash --rcfile ~/.bashrc -c 'command arg'
のように実行した場合、bash は interactive shell ではないから、
結局 ~/.bashrc は読み込まれない。

したがって、>>659 の方法では、>>648 の解決にはならない。