ssh 파일 복사 scp 이용





  • remote server에 있는 파일을 local로 복사하기

    예를 들어 서버(192.168.1.100)의 /home/youngj/helloworld.cpp를
    로컬의 /home/gloryj로 복사한다고 하면

    로컬에서 아래와 같이 명령을 실행하면 된다.
    $scp youngj@192.168.1.100:/home/youngj/helloworld.cpp /home/gloryj



  • local에 있는 파일을 remote server로 복사하기

    예를 들어 현재 로컬 경로의 helloworld.cpp를
    서버(192.168.1.100)의 /home/youngj로 복사한다고 하면

    로컬에서 아래와 같이 명령을 실행하면 된다.
    $scp helloworld.cpp youngj@192.168.1.100:/home/youngj











  • No comments:

    Post a Comment