zsh-users
 help / color / mirror / code / Atom feed
From: Ray Andrews <rayandrews@eastlink.ca>
To: zsh-users@zsh.org
Subject: Re: Copying certain subdirectories retaining structure
Date: Sat, 22 Feb 2014 19:22:15 -0800	[thread overview]
Message-ID: <53096967.7060407@eastlink.ca> (raw)
In-Reply-To: <1393105212.21091.2.camel@air.home.fifi.org>

On 02/22/2014 01:40 PM, Philippe Troin wrote:
> On Sat, 2014-02-22 at 20:06 +0000, zzapper wrote:
>> I want to copy all files in subdirectories named /good/ to a USB while
>> retaining directory structure
>>
>> /aaa/pic/good
>> /aan/dogs/good/
>> /dir1/dir2/dir3/good/
> for i in **/good(/)
> do
>    dest=/media/usbkey/$i
>    mkdir -p $i:h
>    cp -a $i /media/usbkey/$i
> done
>
> Phil.
>
>
This is less elegant but maybe more direct:


  find . -name target -type d -exec cp --parents -r '{}' /aWorking/temp \;

.... where 'target' is the name of the dir you're looking for and in 
this test case, I'm copying to /aWorking/temp/ from /aWorking/aJunk/

source tree:

pts/2 HP-y5-10-Debian1 root /aWorking/aJunk $ t
.
├── [ 12K]  one
│   └── [8.0K]  two
│       └── [4.0K]  target
├── [ 20K]  onea
│   └── [ 16K]  twoa
│       └── [ 12K]  threea
│           └── [8.0K]  target
│               ├── [   0]  file1
│               ├── [   0]  file2
│               ├── [   0]  file3
│               └── [4.0K]  subdir
│                   ├── [   0]  file1
│                   ├── [   0]  file2
│                   └── [   0]  file3
└── [ 20K]  oneb
     ├── [   0]  file1
     ├── [   0]  file2
     ├── [   0]  file3
     └── [ 16K]  twob
         └── [ 12K]  target
             ├── [   0]  file1
             ├── [   0]  file2
             ├── [   0]  file3
             └── [8.0K]  target
                 └── [4.0K]  target

   56K used in 13 directories, 12 files

target tree:

pts/2 HP-y5-10-Debian1 root /aWorking/temp $ t
.
├── [ 12K]  one
│   └── [8.0K]  two
│       └── [4.0K]  target
├── [ 20K]  onea
│   └── [ 16K]  twoa
│       └── [ 12K]  threea
│           └── [8.0K]  target
│               ├── [   0]  file1
│               ├── [   0]  file2
│               ├── [   0]  file3
│               └── [4.0K]  subdir
│                   ├── [   0]  file1
│                   ├── [   0]  file2
│                   └── [   0]  file3
└── [ 20K]  oneb
     └── [ 16K]  twob
         └── [ 12K]  target
             ├── [   0]  file1
             ├── [   0]  file2
             ├── [   0]  file3
             └── [8.0K]  target
                 └── [4.0K]  target

   56K used in 13 directories, 9 files

... correctly missing three files.




  parent reply	other threads:[~2014-02-23  3:52 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-22 20:06 zzapper
2014-02-22 21:40 ` Philippe Troin
2014-02-22 22:02   ` zzapper
2014-02-23  3:22   ` Ray Andrews [this message]
2014-02-23  7:15 ` lilydjwg
2014-02-24 22:33   ` zzapper

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=53096967.7060407@eastlink.ca \
    --to=rayandrews@eastlink.ca \
    --cc=zsh-users@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).