Changes between Initial Version and Version 1 of cypress/FileTransfer


Ignore:
Timestamp:
05/14/15 10:51:09 (9 years ago)
Author:
cmaggio
Comment:

migrate content from ccs wiki and edited for cypress

Legend:

Unmodified
Added
Removed
Modified
  • cypress/FileTransfer

    v1 v1  
     1= File Transfer =
     2
     3== Transferring Files ==
     4=== Linux and Mac Command Line ===
     5You may transfer files between your workstation and the cluster on the command line using the ''scp'' command. This command behaves much like the basic Linux ''cp'' command, except you may use a remote address as the source or destination file. The syntax is as follows:
     6
     7{{{scp source_file destination_file}}}
     8
     9The following command will copy the file testfile from the ''/home/remoteuser/'' directory on the remote server ''cypress1.tulane.edu'' to your workstation's local directory "." (a period represents the current working directory).
     10
     11{{{user@localhost> scp remoteuser@cypress1.tulane.edu:/home/remoteuser/testfile .}}}
     12
     13To copy a directory along with all its contents you will need to add the -r recursive flag. The following command will copy the ''simdata directory'' and all its contents to your local machine.
     14
     15{{{user@localhost> scp -r remoteuser@cypress1.tulane.edu:/home/remoteuser/simdata .}}}