I am well aware of being able to do find myfile.txt -mtime +5 to check if my file is older than 5 days or not. However I would like to fetch mtime in days of myfile.txt and store it into a variable for further usage. How would I do that?
|
|
|
Edit: Ah, you want the time in days since it was modified. That's going to be more complicated, not least because a "day" is not a fixed period of time (some "days" have only 23 hours, others 25 — thanks to daylight savings time). The naive version might look like this:
...but again, that's assuming a day is always exactly 86,400 second long. More about arithmetic in bash here. |
|||||||||||||||
|
will set $AGE to the age of $file in days, as Perl's The return value is a floating-point value (e.g., 6.62849537 days). Add an
Ruby and Python also have their one-liners to stat a file and return some data, but I believe Perl has the most concise way. |
|||
|
|
|
I this the answer?
look at stat-help
|
|||
|
|