97

At the Linux command line, I'd like to copy a (very large) set of .txt files from one directory (and its subdirectories) to another.

I need the directory structure to stay intact, and I need to ignore files except those ending in .txt.

Oliver Salzburg
  • 86,445
  • 63
  • 260
  • 306
unclaimedbaggage
  • 1,085
  • 1
  • 9
  • 7
  • 2
    Having cp and find as tags in your question, does it mean that you're tied to these options? Since your dataset is very large, it makes sense to assume the copying process can get interrupted for some reasons and you'll have to restart it. I'm not sure the find/cp approach will be able to resume the transfer and copy only the missing part. If you aren't tied to find/cp, you could consider rsync, which is smarter. Its --exclude option will alow you to skip .txt files. – vtest Jun 21 '11 at 08:42
  • Fair call - rsync probably is the better option. Not tied to find/cp. (I used them anyway - rsync wasn't installed on the remote machine, it was a live web server & I wanted to leave as small of a footprint as possible) – unclaimedbaggage Jun 22 '11 at 00:08

8 Answers8

114

You can use find and cpio to do this

cd /top/level/to/copy
find . -name '*.txt' | cpio -pdm /path/to/destdir

(-updm for overwrite destination content.)
cedric
  • 103
  • 3
10
cd /source/path
find -type f -name \*.txt -exec install -D {} /dest/path/{} \;
sborsky
  • 891
  • 7
  • 12
  • 1
    You're missing a `.` after `find`. Also on macOS 10.13.1, this worked: `find . -type f -name "*.txt" -exec install -v {} /dest/path/{} \;` – grim Dec 02 '17 at 18:43
5

Another approach

find . -name '*.txt' -exec rsync -R {} path/to/dext \;

Marc
  • 151
  • 1
  • 1
  • I like this solution. I used `find . -iname '*.txt' -exec rsync -Rptgon {} path/to/dext \;` to do a case insensitive match and to preserver ownership and permissions. – MountainX Mar 04 '18 at 08:25
5

Easiest way that worked for me:

cp --parents -R jobs/**/*.xml ./backup/

one catch is you have to navigate to the "desired" directory before so the "parent path" is correct.

Also make sure that you enabled recursive globs in bash:

shopt -s globstar
icyerasor
  • 599
  • 6
  • 6
4

how about you first copy it over with

cp -r /old/folder /new/folder

then go to the new folder and run

find . -type f ! -iname "*.txt" -delete

or just

cp -r /old/folder /new/folder && find . -type f ! -iname "*.txt" -delete

Edit: ok you want one command which filters (I have not tested this because my system doesn't have the cpio command!). Here is where I found it: http://www.gnu.org/software/findutils/manual/html_mono/find.html#Copying-A-Subset-of-Files

find . -name "*.txt" -print0 |
     cpio -pmd0 /dest-dir

Please test this first, because I haven't tried it yet. If someone would verify, that would be great.

k-h
  • 167
  • 10
Dennis
  • 343
  • 1
  • 4
  • 11
3

I was trying to do the same thing on macOS, but none of the options really worked for me. Until i discovered ditto.

I had to copy many .wav files, and have it skip Video files... So here is what I came up with:

find . -type f -iname "*.wav" -ls -exec ditto {} /destination/folder/{} \;

  • find . - Runs find in current folder. make sure you cd /source/folder before you start

  • -type f - Specifies to only look for files

  • -iname "*.wav" - This tells it to look for case insensitive *.wav
  • -ls - This shows you the file that it is working on. Otherwase it shows nothing.
  • -exec ditto {} /destination/folder/{} \; - Does all the work of copying and creating the files with the same directory tree.
0

Navigate to directory:

find . -regex '<regexp_to_get_directories_and_files_you_want>' | xargs -i cp -r --parents {} path/to/destination

It s a bit more straight forward and mighty, if you manage regular expressions.

-1

Navigate to directory:

cp '*.css' /path/to/destination

You'll have to navigate to each folder in the directory, but this is better than most of the options I've seen so far.

Gaff
  • 18,569
  • 15
  • 57
  • 68