So senden Sie eine Datei:
cat file | ssh [email protected] "cat > remote"
Oder:
ssh [email protected] "cat > remote" < file
So erhalten Sie eine Datei:
ssh [email protected] "cat remote" > copy
Versuchen Sie Folgendes:
cat myfile.txt | ssh [email protected] 'cat - > myfile.txt'
Sie können xxd
verwenden und einige hässliche Anführungszeichen, um mehrere Dateien zu kopieren sowie Befehle auf ihnen auszuführen und sie auszuführen:
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
"