Explorar o código

ftp: add page (#1173)

Phil Ewels %!s(int64=8) %!d(string=hai) anos
pai
achega
660b0fe51b
Modificáronse 1 ficheiros con 31 adicións e 0 borrados
  1. 31 0
      pages/common/ftp.md

+ 31 - 0
pages/common/ftp.md

@@ -0,0 +1,31 @@
+# ftp
+
+> Tools to interact with a server via File Transfer Protocol.
+
+- Connect to an FTP server:
+
+`ftp {{ftp.example.com}}`
+
+- Switch to binary transfer mode (graphics, compressed files, etc):
+
+`binary`
+
+- Transfer multiple files without prompting for confirmation on every file:
+
+`prompt off`
+
+- Download multiple files (glob expression):
+
+`mget {{*.png}}`
+
+- Upload multiple files (glob expression):
+
+`mput {{*.zip}}`
+
+- Delete multiple files on the remote server:
+
+`mdelete {{*.txt}}`
+
+- Rename a file on the remote server:
+
+`rename {{original_filename}} {{new_filename}}`