윈도우 쉘에서 FTP 파일 업로드

Jmnote (토론 | 기여)님의 2019년 11월 21일 (목) 18:54 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
  • 리눅스 쉘에서 FTP로 파일 올리기 ‎
  • 윈도우 cmd에서 FTP로 파일 올리기
  • 윈도우에서 FTP로 파일 업로드

1 방법[ | ]

upload.bat
@echo off
echo user 아이디> temp.txt
echo 패스워드>> temp.txt
echo bin>> temp.txt
echo put %1>> temp.txt
echo quit>> temp.txt
ftp -n -s:temp.txt 서버주소
del temp.txt
> upload data.txt

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}