Para receber o arquivo
ssh [email protected] cat > localfile "<" remotefile
ou
ssh [email protected] "gato remotefile" | cat > localfile
Para enviar um arquivo
ssh [email protected] cat < localfile ">" remotefile
ou
cat localfile | ssh [email protected] "cat > remotefile"