2
0
Fork 0
mirror of https://github.com/Idnan/bash-guide.git synced 2018-11-09 02:29:39 +01:00

Update README.md (#54)

miss typing
farget_folder -> target_folder
This commit is contained in:
Ömer 2017-05-03 12:07:52 +03:00 committed by Adnan Ahmed
parent 986117ef3d
commit 809824add8

View file

@ -838,7 +838,7 @@ scp source_file user@host:directory/target_file
*copy from remote host to local host*
```bash
scp user@host:directory/source_file target_file
scp -r user@host:directory/source_folder farget_folder
scp -r user@host:directory/source_folder target_folder
```
This command also accepts an option `-P` that can be used to connect to specific port.
```bash