Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
24
Task/FTP/Batch-File/ftp.bat
Normal file
24
Task/FTP/Batch-File/ftp.bat
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
::Playing with FTP
|
||||
::Batch File Implementation
|
||||
|
||||
@echo off
|
||||
|
||||
set site="ftp.hq.nasa.gov"
|
||||
set user="anonymous"
|
||||
set pass="ftptest@example.com"
|
||||
set dir="pub/issoutreach/Living in Space Stories (MP3 Files)"
|
||||
set download="Gravity in the Brain.mp3"
|
||||
|
||||
(
|
||||
echo.open %site%
|
||||
echo.user %user% %pass%
|
||||
echo.dir
|
||||
echo.!echo.
|
||||
echo.!echo.This is a just a text to seperate two directory listings.
|
||||
echo.!echo.
|
||||
echo.cd %dir%
|
||||
echo.dir
|
||||
echo.binary
|
||||
echo.get %download%
|
||||
echo.disconnect
|
||||
)|ftp -n
|
||||
Loading…
Add table
Add a link
Reference in a new issue