psj@ubuntu:~$ ssh psj@server_name-t "bash --noprofile"
$ compgen -c
a) start bash without source'ing either ~/.bashrc or ~/.bash_profile
b) since such a shell wouldn't be a full login shell / have no tty attached, force ssh to attach a tty:
Very helpful! The first line should have a space before t, or else ssh will not be able to resolve the remote host.
It should be
psj@ubuntu:~$ ssh psj@server_name -t "bash --noprofile"
Forgive me for being the "well actually..." guy.