The UNIX and Linux Forums
>
Top Forums
>
UNIX for Dummies Questions & Answers
Tar only the Directories and Sub Directories
User Name
Remember Me?
Password
Google UNIX.COM
Forums
Portal
Register
Forum Rules
FAQ
Contribute
Members List
Arcade
Search
Today's Posts
Mark Forums Read
Thread
:
Tar only the Directories and Sub Directories
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
3
(
permalink
)
12-23-2004
bhargav
Registered User
Join Date: Sep 2004
Location: USA
Posts: 511
small modification to remove the tmp dir
cd ..
[code]
#!/usr/bin/ksh
mkdir tmp
for i in `find . -type d -print`
do
mkdir -p tmp/$i
done
cd tmp ; rm -rf tmp
tar cvf dirs.tar .
mv dirs.tar ../
cd ..
rm -rf tmp
[/quote]
bhargav
View Public Profile
Find all posts by bhargav