ファイルを送信するには:
cat file | ssh [email protected] "cat > remote"
または:
ssh [email protected] "cat > remote" < file
ファイルを受け取るには:
ssh [email protected] "cat remote" > copy
これを試してください:
cat myfile.txt | ssh [email protected] 'cat - > myfile.txt'
xxd
を使用できます 複数のファイルをコピーし、それらに対してコマンドを実行して実行するための醜い引用:
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
"