명령어 등등

scp - linux 간 파일 쉽게 보내기 scp 명령어

mcdn 2023. 5. 1. 22:50
반응형

 

 

1. 기본 파일 보내기 

 

scp [source file] [username]@[destination server]:.[path]

scp [source file] [username]@[destination server]:.

 

 

 

예시) 

해당 파일이 있는 폴더 위치로 이동해서 

scp .\source.zip home@112.15.36.3:~/2023/codeDir

패스워드 넣으면 100%가 될때까지 숫자가 로딩된다.

 

 

2. 폴더 전체 보내기

 

scp -r [source folder] [username]@[destination server]:[path]

 

예시) scp -r .\codeDir home@112.15.36.3:~/2023/targeted/

해당 폴더의 부모 폴더로 이동해서 코드를 실행한다.

scp -r .\codeDir home@112.15.36.3:~/2023/targeted/

그러면 codeDir가 통째로 옮겨지는 것을 알 수 있다.

 

 

Reference: 

https://superuser.com/questions/850740/how-to-upload-local-file-to-server-through-linux-terminal

 

How to upload local file to server through Linux terminal

I am trying to upload local files to server by using Putty or SSH but not getting upload there. Is there any direct method to upload file from local to server from Linux terminal without using FTP...

superuser.com

 

 

 

https://unix.stackexchange.com/questions/232946/how-to-copy-all-files-from-a-directory-to-a-remote-directory-using-scp

 

How to copy all files from a directory to a remote directory using scp?

My goal is copy only all files from ~/local_dir to user@host.com /var/www/html/target_dir using scp and do not create local_dir category in local_dir. /var/www/html/target_dir/files.. but not ...

unix.stackexchange.com

 

 

반응형