Linux에서 Local로 파일 쉽게 옮기는 법 (command Line)
Updated:
Linux에서 나의 컴퓨터로 파일 쉽게 옮기는 방법 from 명령어
(Ubuntu를 기준으로 작성 되었습니다.)
sshpass
와scp명령어
를 쓰면 손쉽게 파일을 옮길수 있다.- r 옵션을 줘서 , directory도 가능하다.
# apt-get install sshpass (Ubuntu 기준)
sshpass -p 'password' scp -r user@example.com:/some/remote/path /some/local/path
출처 : https://stackoverflow.com/questions/50096/how-to-pass-password-to-scp
Leave a comment