I want to write simple ftp batch file that will send automatically my file from my machine to my ftp.server. The basic script is like this:
##########################################333
:do
ftp -s:newftp.txt <server ip>
:done
echo transfer
############################################33
and the newftp.txt is:
<username>
<password>
put C:\test.rar
:done
Bye
################ I want to see the status of sending file – like hash marks, or percentage. ########## But I don’t know what to put in the script. If someone has any suggestions, please let me know. Thanks
##########################################333
:do
ftp -s:newftp.txt <server ip>
:done
echo transfer
############################################33
and the newftp.txt is:
<username>
<password>
put C:\test.rar
:done
Bye
################ I want to see the status of sending file – like hash marks, or percentage. ########## But I don’t know what to put in the script. If someone has any suggestions, please let me know. Thanks