Para enviar un archivo:
cat file | ssh [email protected] "cat > remote"
O:
ssh [email protected] "cat > remote" < file
Para recibir un archivo:
ssh [email protected] "cat remote" > copy
Prueba esto:
cat myfile.txt | ssh [email protected] 'cat - > myfile.txt'
Puedes usar xxd
y algunas citas feas para copiar varios archivos, así como ejecutar comandos en ellos y ejecutarlos:
ssh -t [email protected] "
echo $'"$(cat somefile | xxd -ps)"' | xxd -ps -r > "'somefile'"
chmod +x somefile
echo $'"$(cat someotherfile | xxd -ps)"' | xxd -ps -r > "'someotherfile'"
chmod +x someotherfile
./somefile
./someotherfile
"