Forrest logo
back to context overview

sftp

List of commands for sftp:

  • sftp:tldr:35784 sftp: Transfer remote file to the local system.
    $ get ${-path-remote_file}
    try on your machine
    explain this command
  • sftp:tldr:44ba5 sftp: Get list of files on remote machine.
    $ ls
    try on your machine
    explain this command
  • sftp:tldr:4b25c sftp: Connect using a predefined host (in `~/.ssh/config`).
    $ sftp ${host}
    try on your machine
    explain this command
  • sftp:tldr:84d97 sftp: Connect using an alternate port.
    $ sftp -P ${remote_port} ${remote_user}@${remote_host}
    try on your machine
    explain this command
  • sftp:tldr:87032 sftp: Transfer local file to the remote system.
    $ put ${-path-local_file}
    try on your machine
    explain this command
  • sftp:tldr:8faeb sftp: Connect to a remote server and enter an interactive command mode.
    $ sftp ${remote_user}@${remote_host}
    try on your machine
    explain this command
  • sftp:tldr:cc862 sftp: Get list of files on local machine.
    $ lls
    try on your machine
    explain this command
  • sftp:tldr:fda59 sftp: Transfer remote directory to the local system recursively (works with `put` too).
    $ get -R ${-path-remote_directory}
    try on your machine
    explain this command
back to context overview