-
서버와 로컬간 파일 업 다운로드 ( scp )Computer Science/Linux 2022. 11. 9. 13:55
모든 명령어는 Local에서 실행한다고 생각한다.
서버 -> 로컬로 파일을 다운 받을 때
(file)
scp user@000.0.0.0:/server/file c:\local\file
(folder)
scp -r user@000.0.0.0:/server/file c:\local\file
로컬 -> 서버로 파일을 다운 받을 때
위 경로만 반대로 진행하면 된다.
ex)
scp -i ***-***-***.pem ec2-user@*.**.**.***:/home/app/***.log ./
'Computer Science > Linux' 카테고리의 다른 글
Putty (0) 2022.06.26