1 min read

WinSCP 동작 automation을 위한 batch 파일 작성

WinSCP 동작 automation을 위한 batch 파일 작성
Photo by Lenny Kuhne / Unsplash

참조: http://winscp.net/eng/docs/scripting

예전 ftp에서 자동화 동작 모드를 위한 ftp 커맨드들의 배치 파일을 만들었던 기억이 있어서 혹시나 해서 찾아봤더니, 역시나 winscp에서도 똑같은 기능을 지원하더군요.
상세한 커맨드 및 설명은 위 링크를 참고하면 됩니다. 아래에 간단히 실행 방법을 정리하였습니다.

스크립트 예제 (by winscp.net)

option batch on
option confirm off

# Connect using a password
# open user:password@example.com
# Connect
open user@example.com
cd /home/user
option transfer binary
get examplefile.txt d:\
close

# Connect as a different user
open user2@example.com
cd /home/user2
put d:\examplefile.txt
close

# Exit WinSCP
exit

실행 방법 (by winscp.net)

winscp.exe /console /script=example.txt
— END OF POST.