GNU/Linux
SCP
サーチ…
構文
- scp [-rv] [-i identity_file] [[user @] host1:] file1 ... [[user @] host2:] file2
基本的な使用法
# Copy remote file to local dir
scp [email protected]:/remote/path/to/foobar.md /local/dest
# Copy local file to remote dir
scp foobar.md [email protected]:/remote/dest
# Key files can be used (just like ssh)
scp -i my_key.pem foobar.md [email protected]:/remote/dest
セキュアコピー
scpコマンドは、ファイルをリモートの宛先に安全にコピーするために使用されます。ファイルが現在動作している場合は、filenameだけで十分です。そうでない場合は、リモートホスト名を含むフルパスが必要です(例:remote_user@some_server.org:/ path / to / file)。
あなたのCWDのローカルファイルを新しいディレクトリにコピーする
scp localfile.txt /home/friend/share/
リモートファイルを現在の作業ディレクトリにコピーする
scp [email protected]:/home/rocky/game/data.txt ./
1つのリモートロケーションから別のリモートロケーションにファイルをコピーする
scp [email protected]:/beacon/light/bitmap.conf [email protected]:/beacon/night/
ディレクトリとサブディレクトリをコピーするには、scpに '-r'再帰オプションを使用します
scp -r [email protected]:~/project/* ./workspace/
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow