-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
828d6fc
commit 2c46599
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,15 +37,15 @@ 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] | ||
``` | ||
|
||
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 [email protected]:/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 [email protected]:/home/sven | ||
``` | ||
|
||
|