ssh 를 이용하여 내부 서버로 접근하지 않고도 서버에 명령을 전달하는 방법에 대해 알아본다.

 

ssh 명령문 뒤에 보내고 싶은 명령을 넣으면 됨.

 

예를 들어

접근하고 싶은 서버가 eyeballs@tistory.com 이고

ssh 포트 넘버가 1234 라고 할 때

다음과 같은 방식으로 여러 명령들을 보낼 수 있다.

 

ssh -p 1234 eyeballs@tistory.com "rm -r /delete/directory/"
ssh -p 1234 eyeballs@tistory.com "mkdir -p /make/a/new/directory"
ssh -p 1234 eyeballs@tistory.com "echo 'Hello World!' > /make/a/new/directory/README.md"

scp -P 1234 -r myfile.txt eyeballs@tistory.com:/make/a/new/directory

 

 

 

+ Recent posts