Untuk mengirim file:
cat file | ssh [email protected] "cat > remote"
Atau:
ssh [email protected] "cat > remote" < file
Untuk menerima file:
ssh [email protected] "cat remote" > copy
Coba ini:
cat myfile.txt | ssh [email protected] 'cat - > myfile.txt'
Anda dapat menggunakan xxd
dan beberapa kutipan jelek untuk menyalin beberapa file serta menjalankan perintah padanya dan menjalankannya:
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
"