From 8517b0cf707a1bd9d3bf68b7c17fb9ba3ca5f9b5 Mon Sep 17 00:00:00 2001
From: nisbet-hubbard <87453615+nisbet-hubbard@users.noreply.github.com>
Date: Wed, 28 Aug 2024 18:04:39 +0800
Subject: [PATCH] Update unix-roundup.md

---
 src/pages/advanced/unix-roundup.md | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/src/pages/advanced/unix-roundup.md b/src/pages/advanced/unix-roundup.md
index 9b3f617..16ed1a1 100644
--- a/src/pages/advanced/unix-roundup.md
+++ b/src/pages/advanced/unix-roundup.md
@@ -17,6 +17,7 @@ iOS limits you to a sandbox, but you can make the most of this by linking files
 Once you've linked the desired folder you're ready to go. Want to make folders in iCloud? No problem,
 
 ```bash
+cd iCloud/
 mkdir docs
 ```
 
@@ -66,7 +67,13 @@ scp file user@remotehost:remotepath
 sftp user@remotehost:remotepath
 ```
 
-In this example, we will transfer a file named `file` to the server `remotehost` with the username of `user` to place it in the `remotepath` folder. `scp` accepts wildcards, allowing the transfer of multiple files at once, but you can also `tar` the files for a better transfer experience. Blink will 
+In this example, we will transfer a file named `file` to the server `remotehost` with the username of `user` to place it in the `remotepath` folder. `scp` accepts wildcards, allowing the transfer of multiple files at once, but you can also `tar` the files for a better transfer experience.
+
+To download a file from the server, run:
+
+```bash
+scp user@remotehost:remotepath link-files-folder/file
+```
 
 Although the `sftp` command in UNIX environments is interactive, Blink Shell uses scp and sftp interchangeably. If you wish to start an interactive session, we have a better solution with our [Files.app integration](/advanced/files-app). This is a fantastic way to browse and open files in a remote Host.