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

76,289

Solution 1

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

Solution 2

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.

Solution 3

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.

Share:
76,289
Andrea
Author by

Andrea

Updated on September 18, 2022

Comments

  • Andrea
    Andrea over 1 year

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

    • Admin
      Admin about 13 years
      Do you want to copy the files to another system, or simply within the same system?
  • CRM
    CRM about 13 years
    @gourav I'm assuming that you are using Putty to log in into a Linux box.