![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
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 modified File List after the chosen date in Korne Shell... | marconi | Shell Programming and Scripting | 2 | 01-22-2008 05:27 AM |
| Finding only those files older than 2 hours | mh53j_fe | UNIX for Dummies Questions & Answers | 2 | 07-01-2005 09:33 AM |
| Finding modified files | rhayabusa | UNIX for Dummies Questions & Answers | 2 | 12-16-2004 01:48 PM |
| finding date and time after 3 hours | svannala | High Level Programming | 2 | 09-07-2003 11:07 PM |
| Finding files older than 2 hours | ianf | Shell Programming and Scripting | 1 | 05-27-2002 10:51 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
finding the file which is modified within last 2 hours
hi,
I want to find a file which is modified within last 2 hours i am using sun-os i tried find . -name <filename> -mmin 120 i found that mmin option is not supported in sun-os is there any other alternative option suggestions welcome thanks in advance |
|
||||
|
You need perl, python or C - here is perl
Code:
#!/bin/ksh
secs()
{
perl -e '
$mtime = (stat $ARGV[0])[9];
$diff = time() - $mtime;
if ($diff > ( $ARGV[1] * 3600 ))
{
print "1";
}
else
{
print "0";
}
' $1 $2
}
hours=2
for file in `ls *.pl`
do
older=$(secs $file $hours)
if [[ $older -eq 1 ]] ; then
echo "$file is older"
else
echo "$file is not older"
fi
done
|
|
||||
|
Quote:
|
|
||||
|
please try the mtime option. check the man page of find.
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|