Copy Directory Structure Using Tar
Need to copy or archive of directory structure without any files ? this worked for me :
tar cnpf dir.tar `find . -type d`
Need to copy or archive of directory structure without any files ? this worked for me :
tar cnpf dir.tar `find . -type d`