Update cheatsheets

This commit is contained in:
ivuorinen
2025-12-17 00:21:28 +00:00
parent 0881b6bcab
commit bda9e5a061
43 changed files with 339 additions and 67 deletions

View File

@@ -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}}`