How to Copy the entire folder contents to another folder using PUTTY

5

1

How to Copy the entire folder contents (including sub-folders and their contents) to another folder using PUTTY? Is there any command for that?

gourav

Posted 2011-05-02T16:00:56.057

Reputation:

Do you want to copy the files to another system, or simply within the same system? – None – 2011-05-02T16:06:50.517

Answers

6

Linux

use cp command for this

for example :

cp -r /home/hope/files/* /home/hope/backup

Windows

use XCopy

For example:

xcopy c:\temp3 /e

Jigar Joshi

Posted 2011-05-02T16:00:56.057

Reputation: 399

1

If you have access to a bash shell you can use the following command:

cp -r /home/dir_to_copy . - Copies dir_to_copy and all its contents (sub-directories and files) to the current directory.

cp -r dir_to_copy/* bak_dir - Copies just the contents (sub-directories and files) of dir_to_copy to a backup directory named bak_dir, however dir_to_copy is not copied.

I hope this helps.

bacchus

Posted 2011-05-02T16:00:56.057

Reputation: 146

@gourav I'm assuming that you are using Putty to log in into a Linux box. – bacchus – 2011-05-02T16:17:51.747

0

What you are looking for is pscp. It can be found on the same website as putty : http://www.chiark.greenend.org.uk/~sgtatham/putty/ Have fun!

EDIT : I presume that your trying to get the files from one system to another, hence the use of putty.

Tom Macdonald

Posted 2011-05-02T16:00:56.057

Reputation: 135