要在shell中調(diào)用ftp命令,您可以使用以下命令:
ftp
命令打開(kāi)一個(gè)FTP會(huì)話:ftp <hostname>
其中<hostname>
是FTP服務(wù)器的主機(jī)名或IP地址。
輸入FTP服務(wù)器的登錄憑據(jù),例如用戶名和密碼。
使用FTP命令進(jìn)行文件傳輸和操作,例如:
put <local_file>
:將本地文件上傳到FTP服務(wù)器。get <remote_file>
:從FTP服務(wù)器下載文件到本地。ls
:列出FTP服務(wù)器上的文件和目錄列表。cd <directory>
:切換到FTP服務(wù)器上的目錄。mkdir <directory>
:在FTP服務(wù)器上創(chuàng)建目錄。delete <file>
:刪除FTP服務(wù)器上的文件。quit
:退出FTP會(huì)話。完整的交互式FTP會(huì)話可能如下所示:
$ ftp example.com
Connected to example.com.
220 Welcome to Example FTP Server.
Name (example.com:user): myusername
331 Password required for myusername.
Password:
230 User myusername logged in.
Remote system type is UNIX.
ftp> put file.txt
local: file.txt remote: file.txt
200 PORT command successful.
150 Opening BINARY mode data connection for file.txt.
226 Transfer complete.
ftp> get file.txt
local: file.txt remote: file.txt
200 PORT command successful.
150 Opening BINARY mode data connection for file.txt.
226 Transfer complete.
ftp> quit
221 Goodbye.
請(qǐng)注意,使用FTP命令進(jìn)行文件傳輸時(shí),您需要確保網(wǎng)絡(luò)連接正常,F(xiàn)TP服務(wù)器是可訪問(wèn)的,并且您具有適當(dāng)?shù)臋?quán)限來(lái)執(zhí)行所需的操作。