diff --git a/lectures/command-line/slides.qmd b/lectures/command-line/slides.qmd index 45696df098b2a70f905b6a395e34f8933cfd3913..81c2666b31fbc64b009297973de71b68fd85dcae 100644 --- a/lectures/command-line/slides.qmd +++ b/lectures/command-line/slides.qmd @@ -146,23 +146,16 @@ Different ways to work on a cluster depending on the task: ## Remote file transfer {auto-animate=true} -* There are different tools to transfer between your local machine and a remote server -* For single files, a simple `scp` is sufficient - ```{raw} - scp <YOUR_USERNAME>@levante.dkrz.de:file_in_home . - ``` -* `rsync` is a more powerful alternative +* There are various tools to transfer data between your local machine and a remote server (e.g. [`scp`](https://linux.die.net/man/1/scp), [`rsync`](https://linux.die.net/man/1/rsync), [`uftp`](https://uftp-multicast.sourceforge.net)) +* `rsync` is a powerful option available on most machines ```{raw} rsync <YOUR_USERNAME>@levante.dkrz.de:file_in_home . ``` ## Remote file transfer {auto-animate=true visibility="uncounted"} -* There are different tools to transfer between your local machine and a remote server -* For single files, a simple `scp` is sufficient - ```{raw} - scp levante:file_in_home . - ``` -* `rsync` is a more powerful alternative with more options + +* There are various tools to transfer data between your local machine and a remote server (e.g. [`scp`](https://linux.die.net/man/1/scp), [`rsync`](https://linux.die.net/man/1/rsync), [`uftp`](https://uftp-multicast.sourceforge.net)) +* `rsync` is a powerful option available on most machines ```{raw} rsync levante:file_in_home . ```