Skip to main content
1 of 2
SirSaleh
  • 203
  • 1
  • 2
  • 6

How to copy "just files" recursively

Suppose I have this structure for folder0 and subfolders and files in it.

   folder0
      subfolder01
        file011
        file012
      subfolder02
        file021
      file01
      file02

I want to copy all files in main folder folder0 to somewhere else, such that all file be in one directory? How Can I do that? I used

cp --recursive folder0address targetfolderaddress

But subfolders copied to target folder. I just want all files in directory and sub directories not folders. I mean STH like below in target folder:

targetfolder
  file011
  file012
  file021
  file01
  file02

Thanks.

SirSaleh
  • 203
  • 1
  • 2
  • 6