SSH is without doubt my favourite command line tool. Today I needed to transfer a file between two hosts that I could SSH to, but could not SSH to each other. This is really simple with a bit of standard UNIX piping.
ssh hostA cat somescript.sh | ssh hostB "cat > somescript.sh"
Job done.