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

  • 리눅스 쉘에서 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 }}