About 108,000 results
Open links in new tab
  1. UNIX How to copy entire directory (subdirectories and files) from one ...

    Oct 1, 2014 · UNIX How to copy entire directory (subdirectories and files) from one location to another and retain permissions Asked 11 years, 2 months ago Modified 3 years, 8 months ago Viewed 28k …

  2. How do I create a copy of a directory in Unix/Linux?

    I want to recursively create a copy of a directory and all its contents (e.g. files and subdirectories).

  3. How to copy in bash all directory and files recursive?

    How to copy in bash all directory and files recursive? Asked 14 years, 1 month ago Modified 3 years, 10 months ago Viewed 290k times

  4. Unix - copy contents of one directory to another [closed]

    Apr 21, 2015 · To make an exact copy, permissions, ownership, and all use "-a" with "cp". "-r" will copy the contents of the files but not necessarily keep other things the same.

  5. Linux: copy and create destination dir if it does not exist

    Oct 7, 2009 · As suggested above by help_asap and spongeman you can use the 'install' command to copy files to existing directories or create create new destination directories if they don't already exist.

  6. How to move or copy files listed by 'find' command in unix?

    Jun 28, 2013 · I have a list of certain files that I see using the command below, but how can I copy those files listed into another folder, say ~/test? find . -mtime 1 -exec du -hc {} +

  7. How to copy a file to multiple directories using the gnu cp command

    113 No, cp can copy multiple sources but will only copy to a single destination. You need to arrange to invoke cp multiple times - once per destination - for what you want to do; using, as you say, a loop or …

  8. linux - How to have the cp command create any necessary folders for ...

    How to have the cp command create any necessary folders for copying a file to a destination [duplicate] Asked 16 years, 7 months ago Modified 4 years, 4 months ago Viewed 757k times

  9. Copy all files with a certain extension from all subdirectories

    Dec 4, 2017 · Under unix, I want to copy all files with a certain extension (all excel files) from all subdirectories to another directory. I have the following command: cp --parents `find -name \*.xls*` /

  10. Copy multiple files from one directory to another from Linux shell

    Closed 11 years ago. I want to copy several files from one folder to another. How do I do it from the shell command prompt? Consider that folder1 contains ten files (e.g. file1, file2, abc, xyz, etc.). I am …