mirror of https://github.com/CrimsonTome/tldr.git
603 B
603 B
sftp
Secure File Transfer Program. Interactive program to copy files between hosts over SSH. For non-interactive file transfers, see
scp
orrsync
.
- Connect to a remote server and enter an interactive command mode:
sftp {{remote_user}}@{{remote_host}}
- Connect using an alternate port:
sftp -P {{remote_port}} {{remote_user}}@{{remote_host}}
- Transfer remote file to the local system:
get {{/path/remote_file}}
- Transfer local file to the remote system:
put {{/path/local_file}}
- Get list of files on local machine:
lls
- Get list of files on remote machine:
ls