Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- VirtualBox
- Mac
- 단축키
- bash
- import
- lsof
- Windows
- profile
- vscode
- web.xml
- port
- 네트워크
- find
- resource
- Source
- tomcat
- Eclipse
- 줄바꿈 문자
- maVen
- netsh
- GIT
- grep
- xargs
- JavaScript
- ssh
- plugin
- IntelliJ
- Windows 10
- context
- Quartz
Archives
- Today
- Total
develog
[bash] 쉘 스크립트 파일을 다른 서버에서 실행 본문
로컬에 있는 쉘 스크립트 파일을 원격 서버에서 실행하기
# 스크립트 파일을 원격 서버에서 실행
ssh root@192.168.56.11 'bash -s' < test.sh
# 여러 줄의 명령을 원격서버에서 실행
ssh root@192.168.56.11 "bash -s" <<-EOF
cd /var/www/html
mv main main_bak
EOF
원격 서버에 있는 쉘 스크립트 파일을 로컬에서 실행하기
ssh root@192.168.56.11 'cat /root/test.sh' | bash
curl -fsSL http://192.168.1.1/home/user/script.sh | bash
Comments