Per inviare un file:
cat file | ssh [email protected] "cat > remote"
Oppure:
ssh [email protected] "cat > remote" < file
Per ricevere un file:
ssh [email protected] "cat remote" > copy
Prova questo:
cat myfile.txt | ssh [email protected] 'cat - > myfile.txt'
Puoi usare xxd
e alcune brutte citazioni da copiare su più file così come eseguire comandi su di essi ed eseguirli:
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
"