Delete directory conditioned


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Delete directory conditioned
# 8  
Old 04-17-2012
Quote:
Originally Posted by zaxxon
No, you are right, sorry. I was drifting away while testing out and thought about having additional levels etc.Smilie not seeing the wood for the trees...
Didn't think about much easier ls -t which does it all for us:
Code:
cd /sdcard/backup; ls -t1 | awk 'NR>1 {system("rm -r "$1)}'

Keep in mind that both solutions are looking for files in that directory, not only directories. So with rm -r you will get an error when encountering non-directory files.
Ahh, so first part searchs inside the directory, and second one erases the older directories, if it exceeds more than 1?

main directory (sdcard/backup) contains X subdirectories with files, I want these files to be erased too (I think rm -r does it, doesn't)

Last edited by Hammerhand; 04-17-2012 at 10:20 AM..
# 9  
Old 04-17-2012
Just a note, this is not quite correct (at least on my Debian box here...):
Quote:
So with rm -r you will get an error when encountering non-directory files.
-r deletes everything - when encountering problems, usually -f is added to force deletion.
I remember it was different with non-empty directories on AIX - my Debian box just kills contents of directories... well, you can try it out^^

ls is listing the contents sorted my modification time. Second part, awk is printing all lines but the 1st and calls a system/external command, that's rm.

Edit: It was some permission, must be write permission, that needed the -f to enforce it.

Last edited by zaxxon; 04-18-2012 at 06:25 AM.. Reason: clarification
This User Gave Thanks to zaxxon For This Post:
# 10  
Old 04-17-2012
Quote:
Originally Posted by zaxxon
ls is listing the contents sorted my modification time. Second part, awk is printing all lines but the 1st and calls a system/external command, that's rm.

-r deletes everything - when encountering problems, usually -f is added to force deletion.
Ok, thanks then, I think it's solved!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Delete directory

Can we force delete the directories despite having files in it? Because I need to delete multiple directories which has multiple files. As of now, I'm deleting the files before deleting the directory. Can't we delete the directory with files? (3 Replies)
Discussion started by: Ram Kumar_BE
3 Replies

2. UNIX for Dummies Questions & Answers

Why can't I delete this directory ?

Oracle Linux 6.4 bash shell I am trying to remove the directory named OPatch. I am trying to run rm and rmdir commands while logged in as grid user, the owner of the directory. But I keep getting "Permission denied" error. It is an empty directory. Any idea why I am getting 'Permission denied'... (5 Replies)
Discussion started by: kraljic
5 Replies

3. UNIX for Dummies Questions & Answers

awk file subtracted by a fix value - conditioned

Hi all... i have been trying to make this work but I have been failing for 6 hours .. I know it should be something simple that I am missing to it would be great if you can help me ... I want to subtract a fixed value (lets set 1) from any value >=1 from the whole file my file looks like ... (4 Replies)
Discussion started by: A-V
4 Replies

4. Shell Programming and Scripting

Script needed to delete to the list of files in a directory based on last created & delete them

Hi My directory structure is as below. dir1, dir2, dir3 I have the list of files to be deleted in the below path as below. /staging/retain_for_2years/Cleanup/log $ ls -lrt total 0 drwxr-xr-x 2 nobody nobody 256 Mar 01 16:15 01-MAR-2015_SPDBS2 drwxr-xr-x 2 root ... (2 Replies)
Discussion started by: prasadn
2 Replies

5. UNIX for Dummies Questions & Answers

Cannot Delete Directory

Hello, I am trying to delete a directory but cannot. Can anyone assist? See attached. Many thanks. (6 Replies)
Discussion started by: dixer
6 Replies

6. Shell Programming and Scripting

How to delete some of the files in the directory, if the directory size limits the specified size

To find the whole size of a particular directory i use "du -sk /dirname".. but after finding the direcory's size how do i make conditions like if the size of the dir is more than 1 GB i hav to delete some of the files inside the dir (0 Replies)
Discussion started by: shaal89
0 Replies

7. Solaris

Directory cannot delete

Dear All, I have problem at T5220 server, when I enter at my server as oracle user and make directory ex. directory test then I will delete directory test with command : rm -rf, what happenned...?? that directory cannot deleted. What's wrong with my server...? Note: my server T5220 with... (3 Replies)
Discussion started by: mbah_jiman
3 Replies

8. Solaris

Can't delete directory

Hi, I have a problem on Solaris 10 regarding deletion of files when I try to recursively delete the directory /opt/Tivoli as root, I get the following error message: rm: Unable to remove directory Tivoli/lcf/dat/1/no-del/bin/solaris2/TME: File exists rm: Unable to remove directory... (4 Replies)
Discussion started by: funksen
4 Replies

9. UNIX for Dummies Questions & Answers

delete a directory

Hi all, I have an empty directory "-ltr". How to delete it ? Thanks (4 Replies)
Discussion started by: madmat
4 Replies

10. HP-UX

Can't delete a directory on HP-UX

Hi, I am having hard time to delete a directory: $ rm -r testoxdwdw rm: testoxdwdw non-existent $ rmdir testoxdwdw rmdir: testoxdwdw: No such file or directory $ rm -rf testoxdwdw Thanks! (2 Replies)
Discussion started by: oradbus
2 Replies
Login or Register to Ask a Question