Delete files directory


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Delete files directory
# 1  
Old 11-02-2016
Delete files directory

amigos
necesito dejar en un directorio solo los archivos del dia anterio, como puedo hacer eso con una shell



Moderator's Comments:
Mod Comment Hello.

Per our forum rules, all posts must be in English.

We do provide translation services for posts from English to a number of languages as a benefit to users. However, posts must be in English.

Please repost in English.

Thank you for your cooperation.

The UNIX and Linux Forums.

Last edited by RudiC; 11-02-2016 at 02:12 PM..
# 2  
Old 11-02-2016
Here is an example of code that will delete directories and their contents older than 2 weeks.
-type d says that you are deleting a directory and piping that to xargs with rm -rfv
means to force delete anything in the directory.

Code:
find /path/to/directory/directory_prefix_* -mtime +14 -type d | xargs rm -rfv

This User Gave Thanks to gandolf989 For This Post:
# 3  
Old 11-02-2016
Quote:
Originally Posted by gandolf989
Here is an example of code that will delete directories and their contents older than 2 weeks.
-type d says that you are deleting a directory and piping that to xargs with rm -rfv
means to force delete anything in the directory.

Code:
find /path/to/directory/directory_prefix_* -mtime +14 -type d | xargs rm -rfv

that code delete files or direct sub too?

friend in the directory have the attached file photo, without em, I Bargo the code below does not bring anything when I run

Code:
-rw-r--r-- 1 satverpv desa    2912 oct 24 17:38 1000169320160930.RSAT
-rw-r--r-- 1 satverpv desa 390936 oct 25 11:39 1000169320160921.RSAT
-rw-r--r-- 1 satverpv desa         0 oct 25 11:41 1000169320160928.RSAT
-rw-r--r-- 1 satverpv desa 390936 oct 25 12:34 1000169320160929.RSAT
-rw-r--r-- 1 satverpv desa         0 oct 26 16:27 1000169320160101.RSAT
-rw-r--r-- 1 satverpv desa 390936 oct 27 16:37 1000169320160922.RSAT
-rw-r--r-- 1 satverpv desa          0 oct 28 11:49 1000169320160927.RSAT
-rw-r--r-- 1 satverpv desa 396032 oct 28 12:24 1000169320161025.RSAT

satverpv(satdes) /u01/home/desa/satverpv/sat/dat> find /u01/home/desa/satverpv/sat/dat/*.RSAT -mtime +14 -type d


Last edited by tricampeon81; 11-02-2016 at 11:34 AM..
# 4  
Old 11-02-2016
If you are deleting files and not directories, then you want to use -type f not d. The first line will return the files found. The second will find and delete the files that you want. You can also try the third line to get the number of files found.

Code:
find /u01/home/desa/satverpv/sat/dat/*.RSAT -mtime +14 -type f
find /u01/home/desa/satverpv/sat/dat/*.RSAT -mtime +14 -type f | xargs rm -rfv
find /u01/home/desa/satverpv/sat/dat/*.RSAT -mtime +14 -type f | wc --lines

This User Gave Thanks to gandolf989 For This Post:
# 5  
Old 11-02-2016
Quote:
Originally Posted by gandolf989
If you are deleting files and not directories, then you want to use -type f not d. The first line will return the files found. The second will find and delete the files that you want. You can also try the third line to get the number of files found.

Code:
find /u01/home/desa/satverpv/sat/dat/*.RSAT -mtime +14 -type f
find /u01/home/desa/satverpv/sat/dat/*.RSAT -mtime +14 -type f | xargs rm -rfv
find /u01/home/desa/satverpv/sat/dat/*.RSAT -mtime +14 -type f | wc --lines



+14 means that the look from today's date to 14 days ago?
# 6  
Old 11-02-2016
I'm not quite sure I understand either of the posts #1 or #3, but if you say that the find command mentioned doesn't return anything, this is not surprising:
- -type d returns only directory names: none of your files is a directory.
- -mtime +14 returns names older than 14 days (in fact 14 * 24 hours): none of your files is that old; the oldest (24. Oct) is nine days old as of today (2. Nov).
This User Gave Thanks to RudiC For This Post:
# 7  
Old 11-02-2016
thank you very much to everyone at the end serves me the solution

Code:
find /u01/home/desa/satverpv/sat/dat/*.RSAT -mtime +14

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. 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

2. Shell Programming and Scripting

Delete all files if another files in the same directory has a matching occurrence of a specific word

he following are the files available in my directory RSK_123_20141113_031500.txt RSK_123_20141113_081500.txt RSK_126_20141113_041500.txt RSK_126_20141113_081800.txt RSK_128_20141113_091600.txt Here, "RSK" is file prefix and 123 is a code name and rest is just timestamp of the file when its... (7 Replies)
Discussion started by: kridhick
7 Replies

3. UNIX for Dummies Questions & Answers

Cannot delete files and directory

hello i am trying to delete some files and also some directories. However, despite having the required permissions (i m the owner), Permission is being denied. I also tried to delete using find and inode number, but again Permission was denied. :wall: I am new to unix so please dumb down... (8 Replies)
Discussion started by: curiosity
8 Replies

4. Shell Programming and Scripting

Delete files in directory using perl

Hello All I am implementing my task in Perl and i found an issue. What i want to do is to remove files from the directory which were made 20 days back using Perl script (9 Replies)
Discussion started by: parthmittal2007
9 Replies

5. Shell Programming and Scripting

Needs to delete particular date files in a directory

Hi Guys, I need help on deleting particular date files in a directory. I have to delete thousands of files with respect to particular date. Could anyone help on this to delete particular date files at a time? Thanks in Advance (2 Replies)
Discussion started by: teddy2882
2 Replies

6. Shell Programming and Scripting

Delete all files if another files in the same directory has a matching occurence of a specific word

Hello, I have several files in a specific directory. A specific string in one file can occur in another files. If this string is in other files. Then all the files in which this string occured should be deleted and only 1 file should remain with the string. Example. file1 ShortName "Blue... (2 Replies)
Discussion started by: premier_de
2 Replies

7. Shell Programming and Scripting

delete all but one files in a directory

what`s the script to do that? assuming my text file is "test.txt" (10 Replies)
Discussion started by: finalight
10 Replies

8. UNIX for Dummies Questions & Answers

How to Delete Multi Directory and Files

I have a subdirectory which has many child directories and files in it. How can i delete them through a list (txt, rtf. xls , or any file extension) which is created by me. I can not manual delete one by one because it almost over 300 directory and over 4000 files. Any one know please help me? (5 Replies)
Discussion started by: cthinh
5 Replies

9. Shell Programming and Scripting

Delete Some Old files from Particular Directory

Hi Team, I am new to scripting. I want to create a script, which needs to keep only 5 days directories and want to remove the old directory from a particular directory. Can Somebody help me with starting this script. All my directories will be created in the name <YYYYMMDD>. Thanks... (2 Replies)
Discussion started by: siva80_cit
2 Replies

10. UNIX for Dummies Questions & Answers

CRON. How to delete files within a directory

I'd like to delete ALL files on a daily basis within a directory that are over a day old. Anyone know how I can automate this through Cron as I have 146 websites to administer. I've tried... 30 02 * * * /home/myspace/tmp/webalizer -atime + 1\! -type d -exec rm -f {} \; but all i get is an... (1 Reply)
Discussion started by: southoxon
1 Replies
Login or Register to Ask a Question