utime atime , mtime , files
Changes the access time (
atime
) and modification time (
mtime
) on each file in a list of
files
. The first two elements must be the
numerical
access and modification times, in that order. The function returns the number of files successfully changed. The inode change time of each file is set to the current time. Here's an example of a
utime
command:
To read the times from existing files, use#!/usr/bin/perl $now = time; utime $now, $now, @ARGV;
stat
.
Copyright © 2001 O'Reilly & Associates. All rights reserved.