ftp
Interactively transfer files between a local and remote FTP server.
More information: https://learn.microsoft.com/windows-server/administration/windows-commands/ftp.
- Connect to a remote FTP server interactively:
ftp {{host}}
- Log in as an anonymous user:
ftp -A {{host}}
- Disable automatic login upon initial connection:
ftp -n {{host}}
- Run a file containing a list of FTP commands:
ftp -s:{{path\to\file}} {{host}}
- [Interactive] Download multiple files (glob expression):
mget {{*.png}}
- [Interactive] Upload multiple files (glob expression):
mput {{*.zip}}
- [Interactive] Delete multiple files on the remote server:
mdelete {{*.txt}}
ftp --help