回答:
質問の仕方はかなりわかりにくいですが、ローカルマシンからサーバーにコピーできる場合は、コマンドラインの順序を逆にするだけです。
そのscp [from] [to]
scp user @ homeip:/ path / to / file / local / path /
ファイル「foobar.txt」をリモートホストからローカルホストにコピーします。
$ scp your_username@remotehost.edu:foobar.txt /some/local/directory
ファイル「foobar.txt」をローカルホストからリモートホストにコピーします。
$ scp foobar.txt your_username@remotehost.edu:/some/remote/directory
ディレクトリ「foo」をローカルホストからリモートホストのディレクトリ「bar」にコピーします。
$ scp -r foo your_username@remotehost.edu:/some/remote/directory/bar
ファイル「foobar.txt」をリモートホスト「rh1.edu」からリモートホスト「rh2.edu」にコピーします。
$ scp your_username@rh1.edu:/some/remote/directory/foobar.txt your_username@rh2.edu:/some/remote/directory/
ファイル「foo.txt」および「bar.txt」をローカルホストからリモートホストのホームディレクトリにコピーします。
$ scp foo.txt bar.txt your_username@remotehost.edu:~
ポート2264を使用して、ローカルホストからリモートホストにファイル「foobar.txt」をコピーします。
$ scp -P 2264 foobar.txt your_username@remotehost.edu:/some/remote/directory
複数のファイルをリモートホストからローカルホストの現在のディレクトリにコピーします。
$ scp your_username@remotehost.edu:/some/remote/directory/\{a,b,c\} .
$ scp your_username@remotehost.edu:~/\{foo.txt,bar.txt\} .
詳細情報:セキュアコピー
sshd
実行している必要があります-誰もが知っている、ええと...
DropboxやGoogleDriveなどのリモートロケーションへのコピーを保護する場合は、https: //couchdrop.ioでアカウントを作成してから、ストレージプロバイダーをリンクします。
そこから単純に、
scp <filename> couchdrop-username@couchdrop.io:/Dropbox
など、クラウドからファイルを取得する場合は、2つのステートメントを逆にするだけです。
scp couchdrop-usernmae@couchdrop.io:/Dropbox/filename ~/
-これにより、選択したディレクトリにファイルがプルダウンされます