![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | 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 and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| finding duplicate files by size and finding pattern matching and its count | jerome Sukumar | Shell Programming and Scripting | 2 | 12-01-2006 04:20 AM |
| finding files | icecool1249 | UNIX for Dummies Questions & Answers | 3 | 03-29-2006 09:17 AM |
| Finding files with UTF-8 BOM | kotoponus | UNIX for Dummies Questions & Answers | 0 | 05-20-2005 10:28 AM |
| finding files | frustrated1 | SUN Solaris | 4 | 12-12-2003 06:12 AM |
| finding files | jseiple | UNIX for Dummies Questions & Answers | 4 | 10-18-2001 06:24 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Hello guys,
Please your help, i need to find all the files writed in the last 5 minutes, but without create another file using touch (like im doing right now): I am doing this: Code:
anio=`date +%Y` mes=`date +%m` dia=`date +%d` hora=`date +%H` minuto2=`date +%M` minuto=`expr $minuto2 - 5` fecha=$anio$mes$dia$hora$minuto touch -t $fecha dummyfile find . -name "*.trazas" -newer dummyfile Is there anny way to find directly files writed since the last 5 minutes? |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|