[!ref icon="comment" text="Blogeintrag auf linuxize.com"](https://linuxize.com/post/how-to-use-linux-sftp-command-to-transfer-files/)

:::cs
## Establishing an SFTP connection  

~~~sh
sftp remote_username@server_ip_or_hostname
~~~

**Navigation** via der Standardbefehle `cd` und `ls`.  

## Downloading Files with the SFTP Command  

### Single File
~~~sh
get filename.zip
~~~

### Entire directory  
~~~sh
get -r remote_directory
~~~

### Resume aborted download  
~~~sh
reget filename.zip // reget -r remote_directory
~~~
:::
