scpコマンドをつかうと、UNIX系システム間ファイル送信できます。
たとえば、macOS上でセコセコ作っていたC++のコードをRasPiに転送したり……。
manの解説によると以下の通りなので……sshコマンドの仕組みを使ってるようです。
scp copies files between hosts on a network. It uses ssh(1) for data transfer, and uses the same authentication and provides the same security as ssh(1).
実際のところ
接続先が"[email protected]"だとして……
今いるディレクトリのmain.py
$ scp ./main.py [email protected]:~/www
$ scp -rC ./www [email protected]:~/www
参考もと
- webkaru.net
- man scp