From 2c465990a1f5a8119b560e131031207884cf3e53 Mon Sep 17 00:00:00 2001 From: richelbilderbeek Date: Tue, 14 May 2024 14:11:35 +0200 Subject: [PATCH] Fix markdown style --- docs/cluster_guides/transit_file_transfer_using_scp.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/cluster_guides/transit_file_transfer_using_scp.md b/docs/cluster_guides/transit_file_transfer_using_scp.md index 8c6e7d281..a8e3a3336 100644 --- a/docs/cluster_guides/transit_file_transfer_using_scp.md +++ b/docs/cluster_guides/transit_file_transfer_using_scp.md @@ -37,7 +37,7 @@ The process is: In the terminal, copy files using `scp` to download files from Transit: -``` +```bash scp [username]@transit.uppmax.uu.se:/home/[username]/[remote_filename] [local_folder] ``` @@ -45,7 +45,7 @@ where `[remote_filename]` is the path to a remote filename, `[username]` is your UPPMAX username, and `[local_folder]` is your local folder, for example: -``` +```bash scp sven@transit.uppmax.uu.se:/home/sven/my_remote_file.txt /home/sven ``` @@ -57,14 +57,14 @@ You can get rid of this prompt if you have setup SSH keys This is how you **would** copy a file from your local computer to Transit: -``` +```bash scp [local_filename] [username]@transit.uppmax.uu.se:/home/[username] ``` where `[local_filename]` is the path to a local filename, and `[username]` is your UPPMAX username, for example: -``` +```bash scp my_file.txt sven@transit.uppmax.uu.se:/home/sven ```