add(cheatsheet): scp

This commit is contained in:
Vast 2018-12-06 09:59:38 +08:00
parent f0705b3a4f
commit fd17d3f1b6
1 changed files with 31 additions and 0 deletions

31
scp.md Normal file
View File

@ -0,0 +1,31 @@
---
title: scp
category: CLI
layout: 2018/sheet
---
### Usage
{: .-prime}
```bash
scp <options> source_path destination_path
```
### Conditions
```bash
-r # transfer directory
-v # see the transfer details
-C # copy files with compression
-l 800 # limit bandwith with 800
-p # preserving the original attributes of the copied files
-q # hidden the output
```
### Commands
$ scp file user@host:/path/to/file # copying a file to the remote system using scp command
$ scp user@host:/path/to/file /local/path/to/file # copying a file from the remote system using scp command
$ scp file1 file2 user@host:/path/to/directory # copying multiple files using scp command
$ scp -r /path/to/directory user@host:/path/to/directory # Copying an entire directory with scp command