wiki:cypress/FileTransfer

Version 1 (modified by cmaggio, 9 years ago) ( diff )

migrate content from ccs wiki and edited for cypress

File Transfer

Transferring Files

Linux and Mac Command Line

You 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:

scp source_file destination_file

The 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).

user@localhost> scp remoteuser@cypress1.tulane.edu:/home/remoteuser/testfile .

To 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.

user@localhost> scp -r remoteuser@cypress1.tulane.edu:/home/remoteuser/simdata .

Note: See TracWiki for help on using the wiki.