ssh machine.msri.org
ssh maxwell@math.berkeley.edu
sftp machine.msri.org
sftp maxwell@math.berkeley.edu
For those who have problems with the above ssh commands, you can try adding a '-1', like:
ssh -1 machine.msri.org
sftp -1 machine.msri.org
This is to connect with servers running some old or broken version of ssh.
From here to there:
scp filename machine.msri.org:newfilename
From there to here:
scp machine.msri.org:filename newfilename
From there to other there:
scp machine.msri.org:filename math.berkeley.edu:newfilename
With different username:
scp filename maxwell@math.berkeley.edu:newfilename
With path information:
scp /u/max/directory/filename machine.msri.org:newfilename
scp filename machine.msri.org:/home/max/directory/newfilename