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
- grep
- xargs
- Windows
- 단축키
- plugin
- GIT
- 줄바꿈 문자
- bash
- find
- context
- port
- JavaScript
- IntelliJ
- vscode
- Windows 10
- tomcat
- maVen
- Source
- resource
- import
- profile
- VirtualBox
- lsof
- 네트워크
- Quartz
- Mac
- Eclipse
- web.xml
- netsh
- ssh
Archives
- Today
- Total
develog
ant 에서 ssh 사용 본문
● 프로젝트에 아래 파일을 추가
● build.xml 파일 내용
<?xml version="1.0" encoding="UTF-8"?>
<project name="MyProject" default="ssh-test" basedir=".">
<taskdef name="ssh"
classpath="lib/maverick-ant.jar"
classname="com.sshtools.ant.Ssh"
/>
<target name="ssh-test">
<ssh host="" port="" username="" password="">
<exec cmd="touch aa.txt" />
</ssh>
</target>
</project>
'Dev > Java' 카테고리의 다른 글
ApplicationContext 가져오는 방법 (0) | 2012.12.04 |
---|---|
DTD-style vs Xml Schem-style in Spring 2.5 (0) | 2012.12.04 |
SQL Developer 에러 조치 (0) | 2012.11.27 |
try catch finally - Flow test (0) | 2012.11.25 |
Spring AOP (0) | 2012.11.24 |
Comments