Removing all file for the particular directory


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Removing all file for the particular directory
# 1  
Old 02-26-2009
Removing all file for the particular directory

i want remove all the files from below directory

Available directory

foa/commprog/data
foa/commprog/a
foa/commprog/b
mfoa/commprog/data
mfoa/commprog/a
mfoa/commprog/c
dfoa/commprog/d


There are more folders like this
i want to remove the the file from only /data
i need only one command.
# 2  
Old 02-26-2009
Code:
find . -type d -regex '.*/data' -exec rm -R {} \;

This will remove:
foa/commprog/data
mfoa/commprog/data

But it won't remove:
foa/commprog/a
foa/commprog/b
mfoa/commprog/a
mfoa/commprog/c
dfoa/commprog/d
# 3  
Old 02-27-2009
Thanks
# 4  
Old 03-23-2009
Hi chebarbudo,
Can you please tell me what does the -regex do in your find command?

thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Rename directory removing last characters

Hello - I was looking to write a simple script trying to rename sub-directories chopping off the last n characters. For example: In /home/myname/dir there are three sub-directories: directory1_1, directory2_2, and directory3_3. Is there a simple script to chop off the last... (4 Replies)
Discussion started by: twckfa16
4 Replies

2. UNIX for Dummies Questions & Answers

Removing directory with leading hyphen from root directory

I know that this basic question has been asked many times and solutions all over the internet, but none of the are working for me. I have a directory in the root directory, named "-p". # ls -l / total 198 <snip> drwxr-xr-x 4 root root 4096 Dec 3 14:18 opt drwxr-xr-x 2 root ... (2 Replies)
Discussion started by: edstevens
2 Replies

3. UNIX for Dummies Questions & Answers

Removing a range of files in a directory..

Hi all, Disclosure: I am very new to Unix, but eager to learn.. I've been tasked with transferring logs to a remote server. After I've verified these logs have transferred correctly I have to remove the source files. The naming scheme is: /directory/2012.05.01 /directory/2012.05.02 ..and... (1 Reply)
Discussion started by: JD3V
1 Replies

4. UNIX for Dummies Questions & Answers

removing first 7 characters of directory names

Hi, I'm relatively new to unix, and would like to change the following files in a particular directory. The files have names like: M10_90_Phcn402_3F.ab1 M10_94_Sput402_3F.ab1 M11_92_Abrg402_3R.ab1 M10_91_Cdel402_3F.ab1 M11_90_Phcn402_3R.ab1 M12_84_Sput402_3R.ab1... (4 Replies)
Discussion started by: euspilapteryx
4 Replies

5. UNIX for Dummies Questions & Answers

removing the files but not the directory

How would i rmeove all the files in the directory but still keep the directory? (5 Replies)
Discussion started by: JamieMurry
5 Replies

6. UNIX for Dummies Questions & Answers

removing directory in an input file

Hi, How can I removed the directory in the input file? The script responsible for storing the report in an input file is this: while }" ] do echo "penetration|${penfilename}|${penfilenamedaterange}" >> ${OUT_DIR}/penrpt_emailfile.txt (( i=i+1 )) done For the penfilename: ... (2 Replies)
Discussion started by: chrysSty
2 Replies

7. Filesystems, Disks and Memory

Removing a file from a directory

How do you remove a file named '-'? ('rm' does not work) (5 Replies)
Discussion started by: npatel
5 Replies

8. UNIX Desktop Questions & Answers

Problem Removing a Directory !!!

Hi All, When i remove a directory , the following error message comes : rm: cannot determine if this is an ancestor of the current working directory Is it something to do with the permissisons ? The path is /PBAMLftp/incoming/misc/July06 - (where i need to remove the July06 directory) And... (1 Reply)
Discussion started by: gauravsachan
1 Replies

9. Shell Programming and Scripting

Removing the oldest file in a directory

Hi all, I need your assistance in removing the oldest file in a directory. I posted the same thread 3 days back and I got the following answer ls -1 -t | tail -1 | xargs rm which is not covering the case when there are directories older than the oldest file. So, could you please... (2 Replies)
Discussion started by: pavan_movva
2 Replies

10. UNIX for Dummies Questions & Answers

removing a directory

all - I'm trying to delete this directory with no success. This was placed in my folder by a test script I wrote for beginners... drwxr-xr-x 2 myaddress ssusr 512 Dec 22 16:10 $x+1 Here is the message I receive - I've tried every command possible to remove it: rmdir:... (7 Replies)
Discussion started by: da_curtain
7 Replies
Login or Register to Ask a Question