deleting all the sub directories


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers deleting all the sub directories
# 1  
Old 01-23-2006
deleting all the sub directories

hello.,

i am creating a certain sub directories as apart of my requirement,

and then later on i have to delete all those sub directories..

____________________________________________________
DIR1="/home/pavi/cvs/20071426/TEMP"

echo " DIR1 is : " $DESTDIR1

echo "Directory exits"
rm -rf $DIR1
echo "dir1 deleted "
______________________________________________________

as a part of requirement i am creating all the temporary directories like cvs/20071426/TEMP

but the above code deletes only the TEMP folder.

but i have to delete all the directories and sub directories everything starting from cvs

can anyone suggest me how can i delete all the temporary directories .

thanks
pavi
# 2  
Old 01-23-2006
you are using

DIR1="/home/pavi/cvs/20071426/TEMP"

echo " DIR1 is : " $DESTDIR1

echo "Directory exits"
rm -rf $DIR1
echo "dir1 deleted "

just look at DIR1 this is ="/home/pavi/cvs/20071426/TEMP"

This is the reason it is only deleting TEMP
set DIR1="/home/pavi/cvs/"
and then do
rm -rf $DIR1


rajesh
# 3  
Old 01-26-2006
thanks rajesh..for your help..yup your right i missed that and i did not realize it.

thanks
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Deleting directories

I want to delete directories which are empty and directories which are 2 level deep. example: /app/data/logs/G07696115/G07696115 So if a same directory is there inside G07696115 with the same name G07696115, i want to find and delete that alone(Make sure you do not touch directory any... (4 Replies)
Discussion started by: gtm004
4 Replies

2. Shell Programming and Scripting

deleting files in sub directories!

Hello out there, I want to setup a crontab feature to remove temporary pdf files from sub directories that are older than 30 days. I want to presevere the directory structer though. I got this far for a command. Will this remove the pdf's in subdirectories or just directly under the pdf folder? If... (6 Replies)
Discussion started by: vsekvsek
6 Replies

3. Shell Programming and Scripting

Deleting empty directories using find

Hello, I'm submitting this thread, because I was looking a way to delete empty directories using find and I found a thread from 2007 that helped me. I have worked from that threat, but I found that the command sent would analyze original directory and may delete it to. I have come up with expanded... (3 Replies)
Discussion started by: lramirev
3 Replies

4. UNIX for Dummies Questions & Answers

deleting older directories

how can we delete directories older than 6 months (9 Replies)
Discussion started by: dnat
9 Replies

5. Filesystems, Disks and Memory

deleting directories from a list

I have a need to remove a bunch of old user home directories from my OS X server. Using BASH and ls, I've been able to redirect the directory structure to a file with 'ls -l >userslist'. I've then manually sifted through the list for directories whos owner doesn't match the a given directory name... (1 Reply)
Discussion started by: amacgeek
1 Replies

6. UNIX for Dummies Questions & Answers

What/How to check before deleting files and directories

Hi there, I have a some directories containing web files that are old, and I need to remove them. I know that there might be sym links and hyperlinks pointing to these old directories. If that's the case, then I'll have to fix the links before deleting these old directories to avoid broken... (4 Replies)
Discussion started by: yvochan
4 Replies

7. UNIX for Dummies Questions & Answers

Deleting string from file of same name within several directories

I searched the forum, but I don't think I was able to find exactly what I'm looking for. Is there a command in shell where I can delete a particular string from every file it occurs in (where the file is named the same, but sits in different directories)? Example: Within the directory I am... (5 Replies)
Discussion started by: halo969
5 Replies

8. UNIX for Dummies Questions & Answers

Recursively deleting directories

Say I have a directory call test, and several directories nested in it, and several directories nested in them. And I want to remove all directories within "test" and its subdirectories that have the name "cvs", how can I do this? I tried rm -r cvs, but that only removed the top level direcotry... (4 Replies)
Discussion started by: mikeshank
4 Replies

9. UNIX for Dummies Questions & Answers

Deleting unamed directories

SCO 5.06 Someone broke into my NT box (grrr) and somehow, they created a bunch of directories w/ subdirectories that appear un-named. I mounted the drive on my unix box using NFS and when I listed the directory in unix, Im getting a bunch of ascii charachters. drwxr-xr-x 8 root group... (4 Replies)
Discussion started by: gseyforth
4 Replies

10. UNIX for Dummies Questions & Answers

deleting nfs directories...

Hi I have Solaris 8 in several Ultras and they share some directories between each others using nfs. (you know, one shares the other mounts the remote directory into a local...). The problem is that one guy (me) deleted a shared directory and now the computer that was mounting it remotely is... (3 Replies)
Discussion started by: piltrafa
3 Replies
Login or Register to Ask a Question