Changes between Version 17 and Version 18 of cypress/FileTransfer


Ignore:
Timestamp:
04/03/21 19:54:19 (3 years ago)
Author:
cbaribault
Comment:

In scp command examples, changed "remoteuser" to "tulaneID" - consistent with elsewhere in wiki.

Legend:

Unmodified
Added
Removed
Modified
  • cypress/FileTransfer

    v17 v18  
    1010}}}
    1111
    12 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).
     12The following command will copy the file testfile from the ''/home/tulaneID/'' directory on the remote server ''cypress1.tulane.edu'' to your workstation's local directory "." (a period represents the current working directory).
    1313{{{
    14 user@localhost> scp remoteuser@cypress1.tulane.edu:/home/remoteuser/testfile .
     14user@localhost> scp tulaneID@cypress1.tulane.edu:/home/tulaneID/testfile .
    1515}}}
    1616
    1717To 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.
    1818{{{
    19 user@localhost> scp -r remoteuser@cypress1.tulane.edu:/home/remoteuser/simdata .
     19user@localhost> scp -r tulaneID@cypress1.tulane.edu:/home/tulaneID/simdata .
    2020}}}
    2121