Forrest logo
back to context overview

ftp

List of commands for ftp:

  • ftp:ai:28e00 Connects to the FTP server using port 16370
    $ ftp -p 16370 ${ftp_server_address}
    try on your machine
    explain this command
  • ftp:ai:5664a Connect to the FTP server using the specified username and password
    $ ftp -u ${username}:password ftp.example.com
    try on your machine
    explain this command
  • ftp:ai:6a471 Connects to the FTP server at ftp.example.com on port 16370
    $ ftp -p 16370 ftp.example.com
    try on your machine
    explain this command
  • ftp:ai:6e2f1 Connect to ftp server with port 16370
    $ ftp -p 16370
    try on your machine
    explain this command
  • ftp:ai:cb529 how do i connect to a ftp share with username, password, and port
    $ ftp -p 12345 username:password@ftp.example.com
    try on your machine
    explain this command
  • ftp:ai:d8ea0 Connect to the FTP server example.com
    $ ftp -i example.com
    try on your machine
    explain this command
  • ftp:tldr:193f9 ftp: Run a file containing a list of FTP commands.
    $ ftp -s:${path\to\file} ${host}
    try on your machine
    explain this command
  • ftp:tldr:2ab00 ftp: Download multiple files (glob expression).
    $ mget ${*-png}
    try on your machine
    explain this command
  • ftp:tldr:4672b ftp: Delete multiple files on the remote server.
    $ mdelete ${*-txt}
    try on your machine
    explain this command
  • ftp:tldr:75505 ftp: Transfer multiple files without prompting for confirmation on every file.
    $ prompt off
    try on your machine
    explain this command
  • ftp:tldr:8a5f0 ftp: Connect to an FTP server specifying its IP address and port.
    $ ftp ${ip_address} ${port}
    try on your machine
    explain this command
  • ftp:tldr:8bf92 ftp: Log in as an anonymous user.
    $ ftp -A ${host}
    try on your machine
    explain this command
  • ftp:tldr:956f5 ftp: Upload multiple files (glob expression).
    $ mput ${*-zip}
    try on your machine
    explain this command
  • ftp:tldr:9d718 ftp: Switch to binary transfer mode (graphics, compressed files, etc).
    $ binary
    try on your machine
    explain this command
  • ftp:tldr:9ed9d ftp: Disable automatic login upon initial connection.
    $ ftp -n ${host}
    try on your machine
    explain this command
  • ftp:tldr:a2d6f ftp: Connect to an FTP server.
    $ ftp ${ftp-example-com}
    try on your machine
    explain this command
  • ftp:tldr:bb329 ftp: Display detailed help.
    $ ftp --help
    try on your machine
    explain this command
  • ftp:tldr:f80b2 ftp: Rename a file on the remote server.
    $ rename ${original_filename} ${new_filename}
    try on your machine
    explain this command
back to context overview