From: Alex Schuster <wonko@wonkology.org>
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] Cloning a directory hierarchy, but not the content
Date: Sat, 29 Jan 2011 15:27:59 +0100 [thread overview]
Message-ID: <201101291527.59925.wonko@wonkology.org> (raw)
In-Reply-To: <201101291412.p0TECGZV014731@dcnode-02.unlimitedmail.net>
Etaoin Shrdlu writes:
> On Sat, 29 Jan 2011 14:58:13 +0100
>
> Alex Schuster <wonko@wonkology.org> wrote:
> > Hi there!
> >
> > I am currently putting extra backups to old hard drives I do no longer
> > need for other purposes. After that I send the putput out ls -lR and du
> > -m to my log directory so I can check what files are on which drive
> > without having to attach the drive.
> >
> > Works, though a better method would be to clone the drive's root
> > directory, but with all file sizes being zero. This way I can easily
> > navigate the directory structure, instead of browsing through the ls-lR
> > file. Is there a utility that does this? It would be even better if the
> > files would be created as sparse files, faking the original size.
> >
> > I just wrote a little script that does this, but it does not do the
> > sparse file thing yet, and would have problems with newline in file
> > names. And I guess someone already wrote such a utility?
>
> IIUC, try
>
> find / -type d -exec sh 'mkdir -p target"$1"' - {} \;
Hmm, that does not really seem to work. It tries to execute the whole stuff
between single quotes as a command. And I don't really understand what it is
supposed to do, shouldn't this be something like mkdir -p
/destination/$1/\{\} ?
Anyway, this is what I already have. It duplicates the hierarchy with empty
files, but I have to add support for sparse files. That won't be too hard,
but maybe I'm re-inventing the wheel here.
#!/bin/bash
src=$1
dst=$2
cd "$src" || exit $?
IFS=$'\n'
find . |
while read file
do
if [[ -d $file ]]
then
[[ -d "$dst/$file" ]] ||
mkdir -p "$dst/$file"
elif [[ -f $file ]]
then
[[ -d "$dst/${file%/*}" ]] ||
mkdir -p "$dst/${file%/*}"
touch "$dst/$file"
fi
done
Wonko
next prev parent reply other threads:[~2011-01-29 14:29 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-29 13:58 [gentoo-user] Cloning a directory hierarchy, but not the content Alex Schuster
2011-01-29 13:54 ` Etaoin Shrdlu
2011-01-29 14:27 ` Alex Schuster [this message]
2011-01-29 14:36 ` Etaoin Shrdlu
2011-01-29 16:45 ` Alex Schuster
2011-01-29 18:59 ` Etaoin Shrdlu
2011-01-29 23:51 ` Alex Schuster
2011-01-29 14:39 ` Florian Philipp
2011-01-29 19:31 ` Alex Schuster
2011-01-29 21:14 ` Florian Philipp
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=201101291527.59925.wonko@wonkology.org \
--to=wonko@wonkology.org \
--cc=gentoo-user@lists.gentoo.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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox