![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Find the age of a file in Minutes | hari_anj | Shell Programming and Scripting | 1 | 03-18-2008 03:22 AM |
| Find accessed file in past 1 or 2 minutes, and throw mail. | varungupta | UNIX for Advanced & Expert Users | 2 | 09-12-2007 12:07 AM |
| Zip all the files within a directory on a daily basis | ramky79 | Shell Programming and Scripting | 5 | 05-14-2007 12:13 PM |
| only find files older than x minutes old | dsimpg1 | Shell Programming and Scripting | 1 | 05-18-2006 08:48 PM |
| find files onder than 15 minutes | sveera | UNIX for Advanced & Expert Users | 11 | 08-11-2005 12:48 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Find files on minutes basis
Hello,
I was trying to find files which are created in last five minutes . I tried to use command find with ntime and mtime but was not successfull then i read from this forum that we can not have a find option on minutes or seconds or hours...... Can somebody Pls expalin how can i search for last hr, min, and sec files by one single command.... Thanks Aparna |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
to find files which are created in last five minutes:
$ find -type f -mmin -5 |
|
#3
|
|||
|
|||
|
wrong option
Hello while running this command
find -type f -mmin -5 find: bad option -mmin even i tried with path described too...... PLS SUGGEST Aparna |
|
#4
|
||||
|
||||
|
Quote:
|
||||
| Google The UNIX and Linux Forums |