There is a dynamic file which will be generated before my script executing.
my $file = a.txt;
Here i want to check:
(Is content of $file changed)? Do_something: Skip;
I'm looking for some solution as below:
if ( if_modified( $file );
--> But We need an initialization file and compare with the latest file while here we have only 1 file at a time.
$monitor->watch( $file ); Is it able to do my task?
I guess that using checksum is not needed because after that i also need to see if checksum result is changed or not.
There are a few possibilities:
And Linux-specififc:
as mentioned by @choroba