Problem with find command


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Problem with find command
# 1  
Old 05-15-2002
Data Problem with find command

Hi,
I am using the find command to remove all the files in a directory ending .NEW and created more than a day ago.


The command I am using is:

find . -name '*.NEW' -ctime +1 | xargs rm

The problem is that it does not work properly. I still have files which were craeted more than a day ago.

In other words, when I run this
find . -name '*.NEW' -ctime +1

I dont get an output.

Is there anything wrong with the syntax or something else?

Thanx
# 2  
Old 05-15-2002
find

the right syntax is

find . -name "*.NEW" -ctime +1 | xargs rm

it is double quote at the beginning and the end of "*.NEW" not single quote.

try

find . -name "*.NEW" -ctime +1

make sure you issued the find command from the right directory
# 3  
Old 05-15-2002
I have used both single and double quotes but it doesnt work with either. Also I am in the correct directory.
# 4  
Old 05-15-2002
Since you're using the -ctime option, do an "ls -lc" in the directory to make sure that you know what the ctime is. You may want to try the find command with the -mtime option.
# 5  
Old 05-15-2002
Hi Perderabo,

ls -lc returns the files created more than day ago.
Also, I tried mtime but didnt work either.

Strangely when I use

find . -name '*.NEW' -ctime -1 it gives me the correct results.
# 6  
Old 05-15-2002
Got it.

The command should be

find . -name '*.NEW' -ctime +0

Thanx everyone
# 7  
Old 05-15-2002
You can do the delete as part of the find command:
Code:
find . -name "*.NEW" -ctime +0  -print -exec rm {} \;

Note that this prints out the name of each file it deletes.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

problem with find command

Hi All, I want to search only files more than 60 min in particular directory but not in sub directories. with this command i am getting even sub directires also.Please and let me know how to get the files. $i=`find /home/n1013141/vijay -type f -mmin -60`; print $i; ... (6 Replies)
Discussion started by: bhas1285
6 Replies

2. Shell Programming and Scripting

problem in find command

I am facing problem in find command. I want to read all file names of a directory and write those names in a text file. My script is find /home/Pratik/src -type f -exec basename {} \; >> names.txt The script is working fine and writing all the file names but problem is file names are not... (5 Replies)
Discussion started by: pratikjain998
5 Replies

3. UNIX for Dummies Questions & Answers

Problem with Find command

Hi, I have a script below,which reads dates from No_weekandMonthend_dates.txt performs the copy operation. for i in `cat /tmp/No_weekandMonthend_dates.txt` do cd $Gerenimopath/ZH_LP find . -type f -name "$i_*.txt" -exec cp {} /home/gaddamja/TempLocal \; cd... (2 Replies)
Discussion started by: jagadish_gaddam
2 Replies

4. Shell Programming and Scripting

Problem with find command

Hello Friends, When i give the command from path from path /var/tmp/asirohi/jdk/docs:- find /var/tmp/asirohi/jdk/docs/ . -depth -name license_*.html I get the following output:- /var/tmp/asirohi/jdk/docs/zh_Hant/jre/license_zh_Hant.html... (3 Replies)
Discussion started by: asirohi
3 Replies

5. UNIX for Dummies Questions & Answers

problem with output of find command being input to basename command...

Hi, I am triying to make sure that there exists only one file with the pattern abc* in path /path/. This directory is having many huge files. If there is only one file then I have to take its complete name only to use furter in my script. I am planning to do like this: if ; then... (2 Replies)
Discussion started by: new_learner
2 Replies

6. Shell Programming and Scripting

Problem with find command.

I'm trying to display the full file name (including the full path) and file size of all files whose name (excluding the path) is longer than 10 characters. I came up with find path -type f -name ".{10, }" -printf "%s %p\n", but I'm getting a "find: path: No such file or directory". What's wrong... (2 Replies)
Discussion started by: raidkridley
2 Replies

7. Shell Programming and Scripting

Find command problem

Hi All, I am using following find command to delete the records older than 7 days but getting missing conjuction error.Kindly suggest: The command is: find <complete_dir_path> \(! -name usr -prune \) -type f -name "*.txt" -mtime +6 -print | xargs rm (11 Replies)
Discussion started by: visingha
11 Replies

8. Shell Programming and Scripting

sh : Problem with the result of a find command

Hi I'm working on solaris and I'm trying to run a script. The part listed here does not work properly, the result of the find command is not in the output file /tmp/result (I've checked the find command , executing the shell with sh -x , it seems correct). It seems like I've lost the standard... (4 Replies)
Discussion started by: frenchwill
4 Replies

9. UNIX for Dummies Questions & Answers

Problem with find command when used with mtime

All, Please find the below comand . I am trying to list the file that has not been accesed is past 14 days . But when you look at the display the directory "crecv1" which has date as today is displayed .. Why it is happening . I send this code instead of ls -ltr as rm -f -r in production... (4 Replies)
Discussion started by: arunkumar_mca
4 Replies

10. UNIX for Advanced & Expert Users

Problem with find command in C-shell

when i use the following command find / -name '*.*' -exec grep -il 'text' {} \; I can redirect the errors to /dev/null. This happens only in ksh but not in csh. the 2>/dev/null is not working in csh. Can you some one suggest an alternative for this in csh ? (3 Replies)
Discussion started by: dhanamurthy
3 Replies
Login or Register to Ask a Question