From 5860902ded10076bbb0f9ee06041a673f0ea25de Mon Sep 17 00:00:00 2001 From: kubu4 Date: Thu, 19 Sep 2024 13:05:37 -0700 Subject: [PATCH] rm code block indentation in klone_File-Transfers.md --- docs/klone_File-Transfers.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/klone_File-Transfers.md b/docs/klone_File-Transfers.md index 190fca44..75015be8 100644 --- a/docs/klone_File-Transfers.md +++ b/docs/klone_File-Transfers.md @@ -5,22 +5,22 @@ #### Copy files to Klone: - ```bash - rsync --archive --progress --verbose /path/to/file/on/your/computer/file.txt @klone.hyak.uw.edu:/gscratch/scrubbed//directory - ``` +```bash +rsync --archive --progress --verbose /path/to/file/on/your/computer/file.txt @klone.hyak.uw.edu:/gscratch/scrubbed//directory +``` #### Copy entire folder to Klone (it is important to make sure there is _no_ `/` at the end of the remote path): Navigate to the directory immediately above the one which you are interested in copying and then run the following command): - ```bash - rsync --archive --progress --verbose --relative ./directory @klone.hyak.uw.edu:/gscratch/scrubbed//directory - ``` +```bash +rsync --archive --progress --verbose --relative ./directory @klone.hyak.uw.edu:/gscratch/scrubbed//directory +``` #### Copy files from Klone: - ```bash - rsync --archive --progress --verbose @klone.hyak.uw.edu:/gscratch/scrubbed//file.txt /path/to/local/directory - ``` +```bash +rsync --archive --progress --verbose @klone.hyak.uw.edu:/gscratch/scrubbed//file.txt /path/to/local/directory +```