(例) リモートホストのポート番号22でindex.html を転送する
- ローカルホスト→リモートホストへ転送(アップロード)
// ローカルホストで実行
$ scp -P 22 index.html admin@domain.com:/home/admin/htdocs/
- リモートホスト→ローカルホストへ転送(ダウンロード)
// ローカルホストで実行
$ scp -P 22 admin@domain.com:/home/admin/htdocs/index.html ./
Go to list of users who liked
More than 5 years have passed since last update.
(例) リモートホストのポート番号22でindex.html を転送する
// ローカルホストで実行
$ scp -P 22 index.html admin@domain.com:/home/admin/htdocs/
// ローカルホストで実行
$ scp -P 22 admin@domain.com:/home/admin/htdocs/index.html ./
Register as a new user and use Qiita more conveniently
Go to list of users who liked