Linux Commands Helper
💬 Your AI-powered Linux assistant
ftp Command - File Transfer Protocol Client
The ftp command is used to transfer files to and from a remote FTP server.
Syntax
ftp [options] [host]
Examples
ftp ftp.example.com
Connect to the FTP server at ftp.example.com.
ftp -n ftp.example.com
Connect without auto-login to ftp.example.com.
Notes
- The ftp client supports interactive commands for uploading, downloading, and managing files.
- For secure file transfer, consider using
sftp
orscp
.