1/20 I have a rather common shell-scripting problem, but I am not sure
how to do it in csh/tcsh. I want to check the ctime (last
modified time) of a file. If it is older than, let say, 1
hours, do something, older than 3 hours, then do something +
something else. Any hints on how to do this? do i need to
convert it to epoch to perform such manipulation? thanks
\- find or perl
\_ or stat(1)
\_ find is an excellent tool for this, especially if you have
access to a modern find. Look at the -ctime and -mmin options
to it.
\_ thanks. will work on "find." |