I want to find if certain files are changed within the last three minutes in order to decide if the cp was successful, and if I should exit or continue the script. How can I do that?
Thanks
|
|
I want to find if certain files are changed within the last three minutes in order to decide if the Thanks
|
||
|
|
|
|
You can get the last modification time of a file with
Then, it's pretty easy to put that in a condition. For example:
|
||
|
|
|
|
A file timestamp change does not really imply you successfully copied. I do not get the exact context of your requirement. How and why would you exit partly within a |
||
|
|
The syntax of this if statement depends on your particular shell, but the date commands don't. I use bash; modify as necessary.
The |
||
|
|
|
|
The stat command will give you the last modification time
|
||
|
|