problem with find command

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications problem with find command
# 1  
Old 07-19-2012
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.
Code:
$i=`find /home/n1013141/vijay -type f -mmin -60`;
print $i;

o/p:/home/n1013141/vijay/test/time.pl
Test is one more directory.

Waiting for valuable reply.

Regards,
vijay

Last edited by jim mcnamara; 07-19-2012 at 10:32 AM..
# 2  
Old 07-19-2012
use maxdepth option with find
# 3  
Old 07-19-2012
man find shows the following

Code:
-maxdepth levels
              Descend  at  most  levels (a non-negative integer) levels of directories below the command line arguments.  
              '-maxdepth 0' means only apply the tests and actions to the command line arguments.

# 4  
Old 07-19-2012
Hi All,
I am using like this.But its saying maxdepth is not valid option. "find: 0652-017 -maxdepth 0 is not a valid option"
Code:
find /home/n1013141/vijay  '-maxdepth 0'  -type f -mmin -60

Please help me

Regards,
vijay

Last edited by Scott; 07-20-2012 at 05:20 AM.. Reason: Code tags
# 5  
Old 07-19-2012
Code:
find /home/n1013141/vijay -maxdepth 1  -type f -mmin -60

# 6  
Old 07-19-2012
It appears that your find implementation doesn't support the -maxdepth predicate. Fortunately, you can accomplish this task without it:
Code:
find /home/n1013141/vijay -type f -mmin -6 -print -o -type d ! \( -name vijay -exec test {} = /home/n1013141/vijay \; \) -prune

Regards,
Alister

Last edited by alister; 07-19-2012 at 02:49 PM..
# 7  
Old 07-20-2012
Hi Alister,

Thanks alot for your help.Its working very good.

Regards,
vijay,
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

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

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

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

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

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

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

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

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

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

10. Shell Programming and Scripting

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... (7 Replies)
Discussion started by: nattynatty
7 Replies
Login or Register to Ask a Question