Copy Directory Structure Using Tar
Friday, May 26th, 2006Need to copy or archive of directory structure without any files ? this worked for me :
tar cnpf dir.tar `find . -type d`
Notes from the field.
Need to copy or archive of directory structure without any files ? this worked for me :
tar cnpf dir.tar `find . -type d`