Differences between revisions 4 and 6 (spanning 2 versions)
Revision 4 as of 2008-11-22 14:09:45
Size: 560
Editor: localhost
Comment: converted to 1.6 markup
Revision 6 as of 2008-11-28 14:16:01
Size: 983
Editor: 89
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
Line 3: Line 4:
Probably, the most easy to understand one, and the second "find" line does the same with files, creating their "dummy" copies, being empty, but having the original's modification and access times:

 . {{{
 cd "$srcdir"
 find . -type d -exec mkdir -p "$destination"/{} \;
 find . -type f -exec touch -r {} "$destination"/{} \;
}}}
Line 4: Line 13:
 {{{
 .
{{{
Line 6: Line 16:
 find . -type d -print | cpio -pdumv "$dstdir"}}}  find . -type d -print | cpio -pdumv "$dstdir"
}}}
Line 10: Line 21:
 {{{  . {{{
Line 13: Line 24:
   tar x --directory "$dstdir"}}}    tar x --directory "$dstdir"
}}}
Line 16: Line 28:

 . ''There should be a way to do this with `pax` too....'' - GreyCat

How can I recreate a directory structure, without the files?

Probably, the most easy to understand one, and the second "find" line does the same with files, creating their "dummy" copies, being empty, but having the original's modification and access times:

  •  cd "$srcdir"
     find . -type d -exec mkdir -p "$destination"/{} \;
     find . -type f -exec touch -r {} "$destination"/{} \;

With the cpio program:

  •  cd "$srcdir"
     find . -type d -print | cpio -pdumv "$dstdir"

or with GNU tar, and more verbose syntax:

  •  cd "$srcdir"
     find . -type d -print | tar c --files-from - --no-recursion |
       tar x --directory "$dstdir"

This creates a list of directory names with find, non-recursively adds just the directories to an archive, and pipes it to a second tar instance to extract it at the target location.

  • There should be a way to do this with pax too.... - GreyCat

BashFAQ/010 (last edited 2023-09-22 06:29:48 by StephaneChazelas)