mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-11 19:58:45 +00:00
Update cheatsheets
This commit is contained in:
14
tldr/ftp
14
tldr/ftp
@@ -8,7 +8,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
> Tools to interact with a server via File Transfer Protocol.
|
||||
> More information: <https://manned.org/ftp>.
|
||||
|
||||
- Connect to an FTP server:
|
||||
- Connect to an FTP server and run in interactive mode:
|
||||
|
||||
`ftp {{ftp.example.com}}`
|
||||
|
||||
@@ -16,26 +16,26 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
`ftp {{ip_address}} {{port}}`
|
||||
|
||||
- Switch to binary transfer mode (graphics, compressed files, etc):
|
||||
- [Interactive] Switch to binary transfer mode (graphics, compressed files, etc):
|
||||
|
||||
`binary`
|
||||
|
||||
- Transfer multiple files without prompting for confirmation on every file:
|
||||
- [Interactive] Transfer multiple files without prompting for confirmation on every file:
|
||||
|
||||
`prompt off`
|
||||
|
||||
- Download multiple files (glob expression):
|
||||
- [Interactive] Download multiple files (glob expression):
|
||||
|
||||
`mget {{*.png}}`
|
||||
|
||||
- Upload multiple files (glob expression):
|
||||
- [Interactive] Upload multiple files (glob expression):
|
||||
|
||||
`mput {{*.zip}}`
|
||||
|
||||
- Delete multiple files on the remote server:
|
||||
- [Interactive] Delete multiple files on the remote server:
|
||||
|
||||
`mdelete {{*.txt}}`
|
||||
|
||||
- Rename a file on the remote server:
|
||||
- [Interactive] Rename a file on the remote server:
|
||||
|
||||
`rename {{original_filename}} {{new_filename}}`
|
||||
|
||||
Reference in New Issue
Block a user