Skip to content
AutoHotKey
2011.02.05 08:19

[autohotkey] FTP-업로드 예제분석

조회 수 18645 추천 수 0 댓글 2
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 첨부
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄 첨부

FTP-업로드 예제분석

FTP-uploading with the help of AHK

출처 : http://www.autohotkey.com/forum/topic39829.html

 

 

; The following example demonstrates how to automate FTP uploading using the operating 

; system's built-in FTP command. This script has been tested on Windows XP and 98se.
;자동으로 ftp에 연결하는 예제입니다.

;이 스크립트는 xp와 98se에 최적화되어 있습니다.

 

 

 

SYSINFO1 = %A_ScriptDir%\sys1.txt
SYSINFO2 = %A_ScriptDir%\sys2.txt
IPINFO =  %A_ScriptDir%\ipinfo.txt
NETSTATINFO = %A_ScriptDir%\netstat.txt
TRACERTINFO = %A_ScriptDir%\tracert.txt
TASKLISTINFO = %A_ScriptDir%\tasklist.txt

RunWait %comspec% /c systeminfo > "%SYSINFO1%",,hide
sleep 5000

RunWait %comspec% /c set > "%SYSINFO2%",,hide
RunWait %comspec% /c ipconfig/all > "%IPINFO%",,hide
RunWait %comspec% /c netstat - an > "%NETSTATINFO%",,hide
Run %comspec% /c tracert 164.124.101.2 > "%TRACERTINFO%",,hide

sleep 15000

Run %comspec% /c tasklist > "%TASKLISTINFO%",,hide

 


FTPCommandFile = %A_ScriptDir%\FTPCommands.txt
FTPLogFile = %A_ScriptDir%\FTPLog.txt
FileDelete %FTPCommandFile%  ; In case previous run was terminated prematurely.

FileAppend,
(
open host.domain.com
username
password
binary
cd htdocs
put sys1.txt
put sys2.txt
put ipinfo.txt
put netstat.txt
put tracert.txt

put tasklist.txt
delete SomeOtherFile.htm
rename OldFileName.htm NewFileName.htm
ls -l
quit
), %FTPCommandFile%

RunWait %comspec% /c ftp.exe -s:"%FTPCommandFile%" >"%FTPLogFile%"

 

;도스창을 띄우지 않고 싶을때는?

RunWait %comspec% /c ftp.exe -s:"%FTPCommandFile%" >"%FTPLogFile%",,hide


FileDelete %FTPCommandFile%  ; Delete for security reasons.
Run %FTPLogFile%  ; Display the log for review.

 

 

 

___________________________________________________________________________________________

 

 

 

 

 

; The following example demonstrates how to automate FTP uploading using the operating 
; system's built-in FTP command. This script has been tested on Windows XP and 98se.

FTPCommandFile = %A_ScriptDir%\FTPCommands.txt
FTPLogFile = %A_ScriptDir%\FTPLog.txt
FileDelete %FTPCommandFile%  ; In case previous run was terminated prematurely.

FileAppend,
(
open my.domain.com
myusername
mypassword
binary
cd htdocs
put C:\cars.txt
delete SomeOtherFile.htm
rename OldFileName.htm NewFileName.htm
ls -l
quit
), %FTPCommandFile%

RunWait %comspec% /c ftp.exe -s:"%FTPCommandFile%" >"%FTPLogFile%"
FileDelete %FTPCommandFile%  ; Delete for security reasons.
Run %FTPLogFile%  ; Display the log for review.

 

 

 

 

 

 

 

;%systemroot% 가 run에서는 안먹힘.

 

runwait %ComSpec% /c %systemroot%\system32\ipconfig.exe /all > c:\ip.txt,, hide

runwait %ComSpec% /c %systemroot%\system32\ipconfig.exe /renew > c:\iprenew.txt,, hide

runwait %ComSpec% /c %systemroot%\system32\ping.exe 164.124.101.2 > c:\ping.txt,, hide

runwait %ComSpec% /c %systemroot%\system32\tasklist.exe > c:\task.txt,, hide

 

;sleep, 1000

 

FTPCommandFile = %A_ScriptDir%\FTPCommands.txt

FTPLogFile = %A_ScriptDir%\FTPLog.txt

FileDelete %FTPCommandFile%  ; In case previous run was terminated prematurely.

 

FileAppend,

(

open 주소

아이디

비번

binary

cd list

put c:\ip.txt

put c:\iprenew.txt

put c:\ping.txt

put c:\task.txt

delete SomeOtherFile.htm

rename OldFileName.htm NewFileName.htm

ls -l

quit

), %FTPCommandFile%

 

RunWait %comspec% /c ftp.exe -s:"%FTPCommandFile%" >"%FTPLogFile%",, hide

FileDelete %FTPCommandFile%  ; Delete for security reasons.

;Run %FTPLogFile%  ; Display the log for review.

 

 

 

 

 

로그인 후 댓글쓰기가 가능합니다.

?

List of Articles
번호 분류 제목 날짜 조회 수
717 컴퓨터잡담 IPv6 몽땅제거 2 2 file 2011.12.26 6309
716 컴퓨터잡담 IP공유기 각사별 초기세팅값 2013.04.20 6320
715 컴퓨터잡담 IP초과로 인터넷이 안될때 2011.12.14 6039
714 WindowsTip ISO USB 굽기 최고의 프로그램 file 2015.03.20 1921
713 WindowsTip ISO 파일을 USB로 굽기(USB 윈도우 설치 디스크 만들기) file 2015.01.09 4885
712 WindowsTip ISO 파일을 USB에 굽는 방법 [4GB 넘는 ISO 파일 USB에 굽는 방법] 2019.04.13 8114
711 WindowsTip JAVA 7 다운로드 file 2015.01.23 5894
710 컴퓨터잡담 JavaScript XML 활용 2010.02.10 9635
709 컴퓨터잡담 JavaScript1.2 Event mouse css 제어 1 2 2010.07.03 7514
708 HTMLPHPMSQL javascript만으로 html간 변수값 주고받기 2018.01.25 17336
707 컴퓨터잡담 javascript만으로 폼전송 2010.10.11 13313
706 프로세스 JQS.EXE jusched.exe (JavaQuickStarterService) 부팅시 자동실행 중지시키기 4 2011.02.06 14735
705 Server jQuery CDN 2016.09.11 4300
704 컴퓨터잡담 jQuery 강좌 3 2009.10.27 12630
703 컴퓨터잡담 KM Wakeup 절전모드 예약 및 깨우는 프로그램 file 2021.07.08 1785
702 컴퓨터잡담 Kvosoft 바이러스 file 2011.01.26 4041
701 컴퓨터잡담 LG G5 기능 어디한번 보자 file 2016.02.21 8995
700 컴퓨터잡담 List of Windows Messages 2 1 2009.12.15 17963
699 Server make ping with PHP(핑테스트) 11 2013.04.01 11145
698 컴퓨터잡담 MCU(Micro Controller Unit) 모터제어 등 2 2012.06.19 6352
Board Pagination Prev 1 ... 9 10 11 12 13 ... 46 Next
/ 46

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소